mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Don't commit tile events if removing entities
This commit is contained in:
parent
f2bb58bba2
commit
662a86d1cd
1 changed files with 10 additions and 6 deletions
|
@ -2512,19 +2512,23 @@ void editorclass::handle_tile_placement(const int tile)
|
|||
|
||||
void editorclass::tool_remove()
|
||||
{
|
||||
switch (current_tool)
|
||||
{
|
||||
case EditorTool_WALLS:
|
||||
case EditorTool_BACKING:
|
||||
if (!placing_tiles)
|
||||
{
|
||||
placing_tiles = true;
|
||||
update_old_tiles();
|
||||
}
|
||||
|
||||
switch (current_tool)
|
||||
{
|
||||
case EditorTool_WALLS:
|
||||
case EditorTool_BACKING:
|
||||
handle_tile_placement(0);
|
||||
break;
|
||||
case EditorTool_SPIKES:
|
||||
if (!placing_tiles)
|
||||
{
|
||||
placing_tiles = true;
|
||||
update_old_tiles();
|
||||
}
|
||||
set_tile_interpolated(old_tilex, tilex, old_tiley, tiley, 0);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue