From c2efd4af27efd910aa2ef88fb2d9072e31cdde2b Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Tue, 16 Aug 2022 10:53:11 -0700 Subject: [PATCH] more copying from quantum man --- QSB/AuthoritySync/AuthWorldObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QSB/AuthoritySync/AuthWorldObject.cs b/QSB/AuthoritySync/AuthWorldObject.cs index e1de52fe..f70d64c7 100644 --- a/QSB/AuthoritySync/AuthWorldObject.cs +++ b/QSB/AuthoritySync/AuthWorldObject.cs @@ -33,7 +33,7 @@ public abstract class AuthWorldObject : WorldObject, IAuthWorldObject } if (Owner == player.PlayerId) { - this.ReleaseOwnership(); + ((IAuthWorldObject)this).SendMessage(new AuthWorldObjectMessage(CanOwn ? QSBPlayerManager.LocalPlayerId : 0)); } } }