about summary refs log tree commit diff
path: root/datasrc
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2009-01-24 10:40:11 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2009-01-24 10:40:11 +0000
commit97eb28afaede309432c5f6f5c25589b00d993cb6 (patch)
tree00fb17c78a1d00e9c9be2e98791c6149571f0dc5 /datasrc
parent598369870d98ef7eb97907a7fa7f534fe0cb8c9b (diff)
downloadzcatch-97eb28afaede309432c5f6f5c25589b00d993cb6.tar.gz
zcatch-97eb28afaede309432c5f6f5c25589b00d993cb6.zip
reduced item respawn delay from 20 to 15 seconds again
Diffstat (limited to 'datasrc')
-rw-r--r--datasrc/content.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/datasrc/content.py b/datasrc/content.py
index f3daa710..2c353f24 100644
--- a/datasrc/content.py
+++ b/datasrc/content.py
@@ -41,7 +41,7 @@ class Sprite(Struct):
 		self.h = Int(h)
 
 class Pickup(Struct):
-	def __init__(self, name="", respawntime=20, spawndelay=0):
+	def __init__(self, name="", respawntime=15, spawndelay=0):
 		Struct.__init__(self, "PICKUPSPEC")
 		self.name = String(name)
 		self.respawntime = Int(respawntime)