diff options
Diffstat (limited to 'datasrc')
| -rw-r--r-- | datasrc/client.dts | 3 | ||||
| -rw-r--r-- | datasrc/server.dts | 7 |
2 files changed, 1 insertions, 9 deletions
diff --git a/datasrc/client.dts b/datasrc/client.dts index 7b2cec99..61bacd54 100644 --- a/datasrc/client.dts +++ b/datasrc/client.dts @@ -119,5 +119,4 @@ const array:int sound = sounds.* const array:int image = images.* const array:int sprite = sprites.*.* const array:int anim = animations.* -const array:int gametype = playerstats.* -const array:int powerup = powerups.* \ No newline at end of file +const array:int powerup = powerups.* diff --git a/datasrc/server.dts b/datasrc/server.dts index e4b6935f..d229894b 100644 --- a/datasrc/server.dts +++ b/datasrc/server.dts @@ -1,6 +1,5 @@ const array:int sound = sounds.* const array:int weapon = weapons.* -const array:int gametype = playerstats.* const array:int powerup = powerups.* struct weapon { @@ -21,13 +20,7 @@ struct powerupinf { int startspawntime = startspawntime@1 } -struct playerstats { - int maxhealth = maxhealth@1 - int maxarmor = maxarmor@1 -} - struct data_container { array:weapon weapons = weapons.* - array:playerstats playerinfo = playerstats.* array:powerupinf powerupinfo = powerups.* } |