summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Allow-more-than-15-object_events-per-map.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Allow-more-than-15-object_events-per-map.md b/Allow-more-than-15-object_events-per-map.md
index 2c45654..13dea9d 100644
--- a/Allow-more-than-15-object_events-per-map.md
+++ b/Allow-more-than-15-object_events-per-map.md
@@ -76,7 +76,7 @@ This is all the same data that gets declared by the `object_event` macro, define
dw \<12>, \<13>
; the dummy PlayerObjectTemplate object_event has no def_object_events
if DEF(_NUM_OBJECT_EVENTS)
- {_NUM_OBJECT_EVENTS} = {_NUM_OBJECT_EVENTS} + 1
+ {_NUM_OBJECT_EVENTS} += 1
endc
ENDM
```