Skip to content

Commit 460aed1

Browse files
fix: player on infinit blocking only on client side (AscensionGameDev#2267)
1 parent 976359f commit 460aed1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Intersect.Client/Entities/Player.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,11 @@ public override bool Update()
310310
Interface.Interface.GameUi.HideGuildWindow();
311311
}
312312

313+
if (IsBlocking && !IsAttacking && !IsMoving)
314+
{
315+
IsBlocking = false;
316+
}
317+
313318
var returnval = base.Update();
314319

315320
return returnval;

0 commit comments

Comments
 (0)