Remove Shivers' collision removal on teleport

This should hopefully remove any issues with them not taking any damage during teleport
This commit is contained in:
Anton Tarasenko 2024-10-29 02:52:55 +07:00
parent 0d87e12977
commit 2384dc34d1

View File

@ -281,7 +281,7 @@ simulated function Tick(float Delta)
{
SetCollision(true, true);
FlashTeleport();
SetCollision(false, false);
SetCollision(true, false);
FadeStage = 2;
}
}
@ -322,7 +322,7 @@ function StartTeleport()
{
FadeStage = 1;
AlphaFader = 255;
SetCollision(false, false);
SetCollision(true, false);
bFlashTeleporting = true;
}
function FlashTeleport()