Skip to content

Commit

Permalink
Allow placing warp token destination in walls
Browse files Browse the repository at this point in the history
Staying consistent with how entities can now be placed in walls, the
warp token destination should follow this as well.
  • Loading branch information
AllyTally authored and InfoTeddy committed Mar 21, 2023
1 parent 08084e5 commit 045ce3a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions desktop_version/src/Editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2988,16 +2988,13 @@ void editorinput(void)
{
if (ed.lclickdelay == 0)
{
if (ed.free(ed.tilex, ed.tiley) == 0)
{
customentities[ed.warp_token_entity].p1 = ed.tilex + (ed.levx * 40);
customentities[ed.warp_token_entity].p2 = ed.tiley + (ed.levy * 30);
customentities[ed.warp_token_entity].p1 = ed.tilex + (ed.levx * 40);
customentities[ed.warp_token_entity].p2 = ed.tiley + (ed.levy * 30);

ed.substate = EditorSubState_MAIN;
ed.substate = EditorSubState_MAIN;

ed.warp_token_entity = -1;
ed.lclickdelay = 1;
}
ed.warp_token_entity = -1;
ed.lclickdelay = 1;
}
}
else
Expand Down

0 comments on commit 045ce3a

Please sign in to comment.