reset some more internal variables to nil when cancelling aiming

they could get in the way when re-aiming quickly after a shot
David Dormagen 2012-06-19 21:30:14 +02:00
parent a28cf7008b
commit a697016c58
1 changed files with 6 additions and 1 deletions

View File

@ -433,7 +433,12 @@ public func ResetHands(bool pause)
{
aim_weapon = nil;
aim_set = nil;
aim_schedule_call = nil;
aim_schedule_timer = nil;
aim_schedule_call2 = nil;
aim_schedule_timer2 = nil;
RemoveEffect("IntAimCheckProcedure", this);
}
}