diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-11 00:04:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-11 00:04:01 -0300 |
commit | 69683a1f984f6ea12ed62cd22e6a0014d6d35bcc (patch) | |
tree | fbb2413d6ec468a66285c32841947855a35b374f /protocol.py | |
parent | 7dc285029db11348ae9ef2d90b805a39ba61f918 (diff) | |
download | server-69683a1f984f6ea12ed62cd22e6a0014d6d35bcc.tar.gz server-69683a1f984f6ea12ed62cd22e6a0014d6d35bcc.tar.bz2 server-69683a1f984f6ea12ed62cd22e6a0014d6d35bcc.tar.xz server-69683a1f984f6ea12ed62cd22e6a0014d6d35bcc.zip |
Alpha version of summoning
Diffstat (limited to 'protocol.py')
-rw-r--r-- | protocol.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocol.py b/protocol.py index 5556bc6..b5327d2 100644 --- a/protocol.py +++ b/protocol.py @@ -105,8 +105,8 @@ def parse(packet, conn): r=player.sellunits(data[2], t); elif data[1] == "recruit": r=tavern.recruit(data[2], t) - #elif data[1] == "summon": - # r=battle.summon(data[2], t) + elif data[1] == "summon": + r=battle.summon(data[2], t) else: r=ERR_BAD |