Merge branch 'development' into alpha41/damageModel-fix_followup

This commit is contained in:
Sir-Skurpsalot 2026-05-13 10:56:55 -06:00 committed by GitHub
commit 8c541f4c48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

@ -10,6 +10,13 @@ function DamageModel::onDestroy(%this)
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
function DamageModel::onCreateGameServer(%this)
{
%this.registerDatablock("./scripts/managedData/managedParticleData");
%this.registerDatablock("./scripts/managedData/managedParticleEmitterData");
%this.queueExec("./scripts/server/utility");
%this.queueExec("./scripts/server/radiusDamage");
%this.queueExec("./scripts/server/projectile");