Skip to content

Commit

Permalink
Fix CAP Not Forcing Super-States
Browse files Browse the repository at this point in the history
  • Loading branch information
Deaod committed Mar 13, 2024
1 parent 4d6c402 commit 48b27d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/bbPlayer.uc
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,7 @@ simulated function xxPureCAP(float TimeStamp, name newState, int MiscData, vecto
if ( Mover(NewBase) != None )
NewLoc += NewBase.Location;

if ( !IsInState(newState) )
if (GetStateName() != NewState)
GotoState(newState);

Carried = CarriedDecoration;
Expand Down

0 comments on commit 48b27d6

Please sign in to comment.