diff --git a/!TheEsc/!MapEdit,ff8 b/!TheEsc/!MapEdit,ff8 index 04c26a3..dc8328e 100644 Binary files a/!TheEsc/!MapEdit,ff8 and b/!TheEsc/!MapEdit,ff8 differ diff --git a/!TheEsc/c/MapEdit b/!TheEsc/c/MapEdit index 6bd919c..be1df5a 100644 --- a/!TheEsc/c/MapEdit +++ b/!TheEsc/c/MapEdit @@ -347,6 +347,17 @@ void game2_tick_input() } } + // D - Delete SmartTile + if(input_readkey(50)) + { + if(tick > readmodkey) + { + SmartTiles[selectedsmart].Tile = -1; + readmodkey = tick + 50; + } + } + + // C - Create smart tile if(input_readkey(82)) { diff --git a/!TheEsc/m2_smart,ffd b/!TheEsc/m2_smart,ffd index cba8408..5bda14c 100644 Binary files a/!TheEsc/m2_smart,ffd and b/!TheEsc/m2_smart,ffd differ