Resolve bug that made players unable to buckle after forced to unbuckle (#2418)

This commit is contained in:
RemberBL
2020-10-28 13:04:20 +01:00
committed by GitHub
parent f785ec4efb
commit 03d85cea1d

View File

@@ -460,6 +460,7 @@ namespace Content.Server.GameObjects.Components.Buckle
if (Moved) if (Moved)
{ {
TryUnbuckle(Owner, true); TryUnbuckle(Owner, true);
Moved = false;
return; return;
} }