Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools.py
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2008-08-31 18:54:58 (GMT)
committer Daniel Drake <dsd@laptop.org>2008-08-31 18:54:58 (GMT)
commit0a3af3cc2b517e940045b780d84b120918495a70 (patch)
tree354f95b5daa9345b4ca6e3861c257a71d892b715 /tools.py
parent67729dc5eba7dfe9f386530e877f5d0f0cfd5e89 (diff)
make space only create one train
Diffstat (limited to 'tools.py')
-rw-r--r--tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools.py b/tools.py
index 68b2c1e..ac0ee54 100644
--- a/tools.py
+++ b/tools.py
@@ -37,7 +37,7 @@ class Tool(object):
self.game.bridge.create_train()
self.game.world.run_physics = not self.game.world.run_physics
elif event.key == K_t:
- self.game.bridge.create_train()
+ self.game.bridge.create_train(force=True)
elif event.key == K_b:
self.game.setTool("box")
elif event.key == K_c: