summaryrefslogtreecommitdiff
path: root/engine/scripting.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-24 03:48:58 -0400
committeryenatch <yenatch@gmail.com>2013-09-24 03:48:58 -0400
commit3134b26f7b5e27242eb9f2a4cdc976a250cf0813 (patch)
tree79bfbcc0fef4bb36876192085e9dd844f5b7e0d9 /engine/scripting.asm
parent8da8dff7cf00647e9c33e10ceb10908a5411ef2a (diff)
rename bit1 script commands to event
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r--engine/scripting.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm
index 0555aba58..ef451f51e 100644
--- a/engine/scripting.asm
+++ b/engine/scripting.asm
@@ -48,9 +48,9 @@ ScriptCommandTable: ; 0x96cb1
dw Script_giveegg
dw Script_givepokeitem
dw Script_checkpokeitem
- dw Script_checkbit1
- dw Script_clearbit1
- dw Script_setbit1
+ dw Script_checkevent
+ dw Script_clearevent
+ dw Script_setevent
dw Script_checkbit2
dw Script_clearbit2
dw Script_setbit2
@@ -2667,7 +2667,7 @@ Script_giveegg: ; 0x97968
ret
; 0x97988
-Script_setbit1: ; 0x97988
+Script_setevent: ; 0x97988
; script command 0x33
; parameters:
; bit_number (MultiByteParam)
@@ -2681,7 +2681,7 @@ Script_setbit1: ; 0x97988
ret
; 0x97996
-Script_clearbit1: ; 0x97996
+Script_clearevent: ; 0x97996
; script command 0x32
; parameters:
; bit_number (MultiByteParam)
@@ -2695,7 +2695,7 @@ Script_clearbit1: ; 0x97996
ret
; 0x979a4
-Script_checkbit1: ; 0x979a4
+Script_checkevent: ; 0x979a4
; script command 0x31
; parameters:
; bit_number (MultiByteParam)