🐛 checking authority on destroy object
This commit is contained in:
@@ -77,9 +77,9 @@ namespace Ragon.Client
|
||||
Attached?.Invoke(this);
|
||||
}
|
||||
|
||||
internal void PrepareDetach()
|
||||
internal void SetReplication(bool enabled)
|
||||
{
|
||||
IsAttached = false;
|
||||
Replication = enabled;
|
||||
}
|
||||
|
||||
internal void Detach(RagonPayload payload)
|
||||
|
||||
@@ -83,13 +83,13 @@ public sealed class RagonEntityCache
|
||||
|
||||
public void Destroy(RagonEntity entity, RagonPayload destroyPayload)
|
||||
{
|
||||
if (!entity.IsAttached)
|
||||
if (!entity.IsAttached && !entity.HasAuthority)
|
||||
{
|
||||
RagonLog.Warn("Can't destroy object, he is not created");
|
||||
RagonLog.Warn("Can't destroy object");
|
||||
return;
|
||||
}
|
||||
|
||||
entity.PrepareDetach();
|
||||
entity.SetReplication(false);
|
||||
|
||||
var buffer = _client.Buffer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user