From fd5b31b2b29cdd8950cf78f0e8ab036fb75330ca Mon Sep 17 00:00:00 2001 From: Marisa the Magician Date: Mon, 25 Sep 2023 23:03:20 +0200 Subject: [PATCH] Small hotfix --- zscript/utcommon.zsc | 3 --- 1 file changed, 3 deletions(-) diff --git a/zscript/utcommon.zsc b/zscript/utcommon.zsc index 8b4999a..9c8957c 100644 --- a/zscript/utcommon.zsc +++ b/zscript/utcommon.zsc @@ -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); }