1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-23 04:58:30 +02:00

Don't deactive tele prompt when dying

This fixes a bug where if you died after activating a teleporter prompt
and then respawned in the same room as the teleporter, the teleporter
prompt would go away. Which would be very annoying if you wanted to, you
know, teleport.

You don't even have to R-press to make this happen. "Level Complete!"
and Energize are two teleporter rooms in the main game that have hazards
in them.

I see no reason to set game.activetele to false when dying. For one, it
gets set to false during a gotorom anyway. For another, I couldn't get
the game to activate the teleport prompt in a room without a teleporter
in my testing, mostly because when you touch a teleporter, your
checkpoint is set to that teleporter, so you can't R-press to go to
another room and carry over the teleport prompt.
This commit is contained in:
Info Teddy 2020-01-13 15:55:46 -08:00 committed by Ethan Lee
parent b8e611a3bf
commit e0b80cf0b5

View File

@ -671,7 +671,6 @@ void gamelogic(Graphics& dwgfx, Game& game, entityclass& obj, musicclass& music
}
game.gethardestroom(map);
game.activetele = false;
game.hascontrol = true;