Update DamageModel.tscript

This commit is contained in:
Sir-Skurpsalot 2026-05-12 23:33:55 -06:00 committed by GitHub
parent 0c51bbece6
commit a4760e33a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,6 +9,7 @@ function DamageModel::onDestroy(%this)
//This is called when the server is initially set up by the game application
function DamageModel::initServer(%this)
{
%this.queueExec("./scripts/server/player");
}
//This is called when the server is created for an actual game/map to be played
@ -22,7 +23,6 @@ function DamageModel::onCreateGameServer(%this)
%this.queueExec("./scripts/server/weapon");
%this.queueExec("./scripts/server/shapeBase");
%this.queueExec("./scripts/server/vehicle");
%this.queueExec("./scripts/server/player");
%this.queueExec("./scripts/server/commands");
}