Small hotfix

This commit is contained in:
Marisa the Magician 2023-09-25 23:03:20 +02:00
commit fd5b31b2b2

View file

@ -2909,7 +2909,6 @@ Class UTTeleParticle : UTMeshParticle
Class WaterHit
{
Sector sect;
Vector3 hitpos;
}
@ -2961,14 +2960,12 @@ Class UTBulletTrail : LineTracer
if ( Results.CrossedWater )
{
let hl = new("WaterHit");
hl.sect = Results.CrossedWater;
hl.hitpos = Results.CrossedWaterPos;
WaterHitList.Push(hl);
}
else if ( Results.Crossed3DWater )
{
let hl = new("WaterHit");
hl.sect = Results.Crossed3DWater;
hl.hitpos = Results.Crossed3DWaterPos;
WaterHitList.Push(hl);
}