Merge pull request #226 from Azaezel/alpha40_NamesapceNoNo

adress #225
This commit is contained in:
Brian Roberts 2020-06-26 20:47:52 -05:00 committed by GitHub
commit 7a10c42c40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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();
}