对话回顾
This commit is contained in:
@@ -87,7 +87,7 @@ namespace AibisDream.Framework
|
||||
var kv = key.ToInt32(null);
|
||||
|
||||
if (!_eventDict.TryGetValue(typeof(T), out var e)) return;
|
||||
if (e.Length >= kv || e[kv] == null) return;
|
||||
if (e.Length <= kv || e[kv] == null) return;
|
||||
|
||||
if (e[kv] is EasyEvent tempEvent)
|
||||
{
|
||||
@@ -100,7 +100,7 @@ namespace AibisDream.Framework
|
||||
var kv = key.ToInt32(null);
|
||||
|
||||
if (!_eventDict.TryGetValue(typeof(T), out var e)) return;
|
||||
if (e.Length >= kv || e[kv] == null) return;
|
||||
if (e.Length <= kv || e[kv] == null) return;
|
||||
|
||||
e[kv].UnRegisterAll();
|
||||
}
|
||||
@@ -120,7 +120,7 @@ namespace AibisDream.Framework
|
||||
var kv = key.ToInt32(null);
|
||||
|
||||
if (!_eventDict.TryGetValue(typeof(T), out var e)) return;
|
||||
if (e.Length >= kv || e[kv] == null) return;
|
||||
if (e.Length <= kv || e[kv] == null) return;
|
||||
|
||||
if (e[kv] is EasyEvent tempEvent)
|
||||
{
|
||||
@@ -133,7 +133,7 @@ namespace AibisDream.Framework
|
||||
var kv = key.ToInt32(null);
|
||||
|
||||
if (!_eventDict.TryGetValue(typeof(T), out var e)) return;
|
||||
if (e.Length >= kv || e[kv] == null) return;
|
||||
if (e.Length <= kv || e[kv] == null) return;
|
||||
|
||||
if (e[kv] is EasyEvent<TE> tempEvent)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user