diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-03 22:09:22 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-03-03 22:23:40 -0500 |
commit | 4c1d30a832439e9a4b2a0a43f281ca11150a09b5 (patch) | |
tree | ef969872c80517c7c2a7487044a4c0f703e070a6 /src/scrcmd.c | |
parent | 9fbe7e14a898aadbef5d8fe4cd44507d02d1a991 (diff) |
Add more metatile labels
Diffstat (limited to 'src/scrcmd.c')
-rw-r--r-- | src/scrcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scrcmd.c b/src/scrcmd.c index 76b020fbc..3f1927cbf 100644 --- a/src/scrcmd.c +++ b/src/scrcmd.c @@ -2111,7 +2111,7 @@ bool8 ScrCmd_setmetatile(struct ScriptContext *ctx) if (!v8) MapGridSetMetatileIdAt(x, y, tileId); else - MapGridSetMetatileIdAt(x, y, tileId | 0xC00); + MapGridSetMetatileIdAt(x, y, tileId | METATILE_COLLISION_MASK); return FALSE; } |