Remove trailing whitespace from all files

Surprisingly, there's not a lot of it. There is, however, a lot of mixed
indentation in this project.
This commit is contained in:
Misa
2020-04-02 12:41:33 -07:00
committed by Ethan Lee
parent 6c6b6c68ff
commit 12d5433efc
6 changed files with 22 additions and 22 deletions

View File

@@ -1043,13 +1043,13 @@ void gamelogic()
//warp lines for collision
obj.customwarpmodehon = false;
obj.customwarpmodevon = false;
int i = obj.getplayer();
if ((game.door_down > -2 && obj.entities[i].yp >= 226-16) || (game.door_up > -2 && obj.entities[i].yp < -2+16) || (game.door_left > -2 && obj.entities[i].xp < -14+16) || (game.door_right > -2 && obj.entities[i].xp >= 308-16)){
//Player is leaving room
obj.customwarplinecheck(i);
}
if(obj.customwarpmodehon){ map.warpy=true;
}else{ map.warpy=false; }
if(obj.customwarpmodevon){ map.warpx=true;