diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-26 17:51:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 17:51:56 -0500 |
commit | 2efbd5f549bd03cfdaea2c84d48d5fb706034464 (patch) | |
tree | 2454365b3478382c4246dc850f700f661377ed46 /src/scrcmd.c | |
parent | 4188dd405c07943da9fb6d5c048d5845a94e0669 (diff) | |
parent | 3d0326106ed683911da66eee1bf94becadc7a2db (diff) |
Merge pull request #1608 from GriffinRichards/fix-fieldmap
Fix some incorrect 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 4b7477fe1..44bd14c28 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; } |