diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-30 07:15:26 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-30 07:15:26 +0000 |
| commit | c919da6640a34d49cc128c8eed1ba383463bbc6f (patch) | |
| tree | e329cbc1095f92056f7d2e449442555dddb9e4cc /datasrc | |
| parent | 0e7054a24abfe2074aa5bbc556205cf2381bb87a (diff) | |
| download | zcatch-c919da6640a34d49cc128c8eed1ba383463bbc6f.tar.gz zcatch-c919da6640a34d49cc128c8eed1ba383463bbc6f.zip | |
made stuff for ctf. all editor stuff for it is done. the ctf logic has to be written.
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.* } |