about summary refs log tree commit diff
path: root/datasrc/network.py
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2009-01-12 21:41:16 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2009-01-12 21:41:16 +0000
commit123c5b5b9962f4af04ae2a0ca72fec668a1bea1e (patch)
tree77aa460967d62c22df18a0fe56486f1fcef6c9ed /datasrc/network.py
parent1d6668583a23b45724e9b107604c0dbfae433f10 (diff)
downloadzcatch-123c5b5b9962f4af04ae2a0ca72fec668a1bea1e.tar.gz
zcatch-123c5b5b9962f4af04ae2a0ca72fec668a1bea1e.zip
introduced 3 special pseudo weapons. game, self and world to make a difference on how you got killed
Diffstat (limited to 'datasrc/network.py')
-rw-r--r--datasrc/network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/datasrc/network.py b/datasrc/network.py
index 1a83a80f..12ae34d3 100644
--- a/datasrc/network.py
+++ b/datasrc/network.py
@@ -209,7 +209,7 @@ Messages = [
 	NetMessage("sv_killmsg", [
 		NetIntRange("killer", 0, 'MAX_CLIENTS-1'),
 		NetIntRange("victim", 0, 'MAX_CLIENTS-1'),
-		NetIntRange("weapon", -1, 'NUM_WEAPONS-1'),
+		NetIntRange("weapon", -3, 'NUM_WEAPONS-1'),
 		NetIntAny("mode_special"),
 	]),