提交 2f0e7673 编写于 作者: T tanghai

修复ActorProxyDestroySystem未生效的bug,DestroySystem中不应该判断IsDisposed

上级 2b191c8b
......@@ -32,11 +32,6 @@ namespace ETHotfix
{
public override void Destroy(ActorProxy self)
{
if (self.IsDisposed)
{
return;
}
self.LastSendTime = 0;
self.Address = null;
......@@ -59,6 +54,7 @@ namespace ETHotfix
{
self.LastSendTime = TimeHelper.Now();
self.tcs = null;
self.failTimes = 0;
self.CancellationTokenSource = new CancellationTokenSource();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册