on LFREEZE and LUNFREEZE  case
This commit is contained in:
Wohoo 2022-01-18 00:07:52 +01:00
parent fb09082128
commit 163666a9fb

View file

@ -46,13 +46,13 @@ const char *CEditor::Explain(int ExplanationID, int Tile, int Layer) //TODO: Add
return "JUMP: Sets defined amount of jumps (default is 2).";
break;
case TILE_FREEZE:
if(Layer == LAYER_GAME || Layer == LAYER_FRONT || Layer == LAYER_SWITCH)
if(Layer == LAYER_GAME || Layer == LAYER_FRONT)
return "FREEZE: Freezes tees for 3 seconds.";
if(Layer == LAYER_SWITCH)
return "FREEZE: Freezes tees for defined amount of seconds.";
break;
case TILE_UNFREEZE:
if(Layer == LAYER_GAME || Layer == LAYER_FRONT || Layer == LAYER_SWITCH)
if(Layer == LAYER_GAME || Layer == LAYER_FRONT)
return "UNFREEZE: Unfreezes tees immediately.";
break;
case TILE_TELEINEVIL: