update15 #34
1 changed files with 2 additions and 2 deletions
Remove Shivers' collision removal on teleport
This should hopefully remove any issues with them not taking any damage during teleport
commit
2384dc34d1
|
|
@ -281,7 +281,7 @@ simulated function Tick(float Delta)
|
||||||
{
|
{
|
||||||
SetCollision(true, true);
|
SetCollision(true, true);
|
||||||
FlashTeleport();
|
FlashTeleport();
|
||||||
SetCollision(false, false);
|
SetCollision(true, false);
|
||||||
FadeStage = 2;
|
FadeStage = 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -322,7 +322,7 @@ function StartTeleport()
|
||||||
{
|
{
|
||||||
FadeStage = 1;
|
FadeStage = 1;
|
||||||
AlphaFader = 255;
|
AlphaFader = 255;
|
||||||
SetCollision(false, false);
|
SetCollision(true, false);
|
||||||
bFlashTeleporting = true;
|
bFlashTeleporting = true;
|
||||||
}
|
}
|
||||||
function FlashTeleport()
|
function FlashTeleport()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue