diff --git a/src/game_interpreter.cpp b/src/game_interpreter.cpp index cb829dc6f0..345a092a3c 100644 --- a/src/game_interpreter.cpp +++ b/src/game_interpreter.cpp @@ -4564,17 +4564,6 @@ bool Game_Interpreter::CommandManiacRewriteMap(lcf::rpg::EventCommand const& com bool disable_autotile = com.parameters[8] != 0; - Output::Debug("RewriteMap | Mode: {}, SingleRange: {}, Layer: {}, IdOrArrayStart: {}, LeftEnd: {}, TopValue: {}, Width: {}, Height: {}, Autotile: {}", - mode, - is_replace_range, - is_upper_layer, - tile_index, - x_start, - y_start, - width, - height, - disable_autotile); - Scene_Map* scene = (Scene_Map*)Scene::Find(Scene::Map).get(); if (!scene) return true; diff --git a/src/tilemap_layer.cpp b/src/tilemap_layer.cpp index e2ea3e560b..5c457705d0 100644 --- a/src/tilemap_layer.cpp +++ b/src/tilemap_layer.cpp @@ -745,7 +745,7 @@ void TilemapLayer::SetMapTileDataAt(int x, int y, int tile_id, bool disable_auto // TODO: make it work for AB autotiles if (IsAutotileAB(tile_id)) { RecreateTileDataAt(x, y, tile_id); - Output::Warning("Maniac Patch: Command RewriteMap is only partially supported."); + Output::Warning("Maniac Patch: Autotiles A and B in RewriteMap are only partially supported."); } else { RecalculateAutotile(x, y, tile_id); } @@ -795,7 +795,7 @@ static inline void ApplyCornerFixups(uint8_t& neighbors) { void TilemapLayer::RecalculateAutotile(int x, int y, int tile_id) { // TODO: make it work for AB autotiles if (IsAutotileAB(tile_id)) { - Output::Warning("Maniac Patch: Command RewriteMap is only partially supported."); + Output::Warning("Maniac Patch: Autotiles A and B in RewriteMap are only partially supported."); return; }