diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-19 10:15:32 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-19 10:15:32 -0500 |
commit | a8b466dc80eb22146c6bc517d44fdc133a646555 (patch) | |
tree | 605cf9e43e2e3174bfb8019092259b710b242710 /src/scrcmd.c | |
parent | f127e64a3ca2899510622f012bc3823da2c5cd23 (diff) |
Disambiguate fieldmap names
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 2c18cb565..a5a380759 100644 --- a/src/scrcmd.c +++ b/src/scrcmd.c @@ -2046,7 +2046,7 @@ bool8 ScrCmd_setmetatile(struct ScriptContext *ctx) if (!isImpassable) MapGridSetMetatileIdAt(x, y, tileId); else - MapGridSetMetatileIdAt(x, y, tileId | METATILE_COLLISION_MASK); + MapGridSetMetatileIdAt(x, y, tileId | MAPGRID_COLLISION_MASK); return FALSE; } |