about summary refs log tree commit diff homepage
path: root/brutalmaze
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-03-19 15:30:30 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-03-19 15:30:30 +0700
commit2bd7352aec15bd7af5373db6ed0a2ba03d31b185 (patch)
treeb0563c24b057d9ba9381660aff2119811acba637 /brutalmaze
parentace958677825cbde58a38911655f8011b0ee8131 (diff)
downloadbrutalmaze-2bd7352aec15bd7af5373db6ed0a2ba03d31b185.tar.gz
Remove crazy score for server testing
Diffstat (limited to 'brutalmaze')
-rw-r--r--brutalmaze/game.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/brutalmaze/game.py b/brutalmaze/game.py
index afd2b29..b78e375 100644
--- a/brutalmaze/game.py
+++ b/brutalmaze/game.py
@@ -17,7 +17,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with Brutal Maze.  If not, see <https://www.gnu.org/licenses/>.
 
-__version__ = '0.6.2'
+__version__ = '0.6.3'
 
 import re
 from argparse import ArgumentParser, FileType, RawTextHelpFormatter
@@ -260,7 +260,6 @@ class Game:
             time = get_ticks()
             print('[{}] Connected to {}:{}'.format(time, *address))
             self.maze.reinit()
-            self.maze.score = 100000
             while True:
                 if self.hero.dead:
                     connection.send('0000000'.encode())