This commit is contained in:
AzaezelX 2020-06-23 13:43:04 -05:00
parent 3e1795ba1d
commit 6fde8dd4c3
2 changed files with 0 additions and 4 deletions

View file

@ -100,7 +100,6 @@ bool Message::onAdd()
if(! Parent::onAdd())
return false;
linkNamespaces();
onAdd_callback();
//Con::executef(this, "onAdd");
return true;
@ -120,7 +119,6 @@ void Message::onRemove()
{
onRemove_callback();
//Con::executef(this, "onRemove");
unlinkNamespaces();
Parent::onRemove();
}

View file

@ -85,7 +85,6 @@ bool ScriptMsgListener::onAdd()
if(! Parent::onAdd())
return false;
linkNamespaces();
onAdd_callback();
//Con::executef(this, "onAdd");
return true;
@ -105,7 +104,6 @@ void ScriptMsgListener::onRemove()
{
onRemove_callback();
//Con::executef(this, "onRemove");
unlinkNamespaces();
Parent::onRemove();
}