Merge pull request #1142 from Azaezel/alpha41/spamfilter

stop spamming the console every spawnObject call
This commit is contained in:
Brian Roberts 2023-11-29 02:26:54 -06:00 committed by GitHub
commit d7ca55a085
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -436,7 +436,7 @@ SimObject *spawnObject(String spawnClass, String spawnDataBlock, String spawnNam
// If we have a spawn script go ahead and execute it last
if (spawnScript.isNotEmpty())
Con::evaluate(spawnScript.c_str(), true);
Con::evaluate(spawnScript.c_str());
return spawnObject;
}