fix access None

This commit is contained in:
cclecle
2022-12-03 13:21:40 +00:00
parent 1d2c62dd33
commit 22d79af8c7
3 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@@ -60,7 +60,9 @@ simulated function Tick(float dt)
//Log("Hook.Location "$Hook.Location);
SetLocation( Instigator.Location );
mSpawnVecA = Hook.Location;
if(Hook!=None) mSpawnVecA = Hook.Location;
else mSpawnVecA = Instigator.Location;
}

Binary file not shown.