diff options
Diffstat (limited to 'datasrc/server.dts')
| -rw-r--r-- | datasrc/server.dts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/datasrc/server.dts b/datasrc/server.dts index 3631336f..aba31514 100644 --- a/datasrc/server.dts +++ b/datasrc/server.dts @@ -9,6 +9,12 @@ struct weapon { int velocity = velocity@1 } +struct powerupinf { + int amount = amount@1 + int respawntime = respawntime@1 + int startspawntime = startspawntime@1 +} + struct playerstats { int maxhealth = maxhealth@1 int maxarmor = maxarmor@1 @@ -17,8 +23,10 @@ struct playerstats { struct data_container { array:weapon weapons = weapons.* array:playerstats playerinfo = playerstats.* + array:powerupinf powerupinfo = powerups.* } const array:int sound = sounds.* const array:int weapon = weapons.* -const array:int gametype = playerstats.* \ No newline at end of file +const array:int gametype = playerstats.* +const array:int powerup = powerups.* \ No newline at end of file |