Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Levenson <alexlevenson@laptop.org>2008-07-10 21:46:46 (GMT)
committer Alex Levenson <alexlevenson@laptop.org>2008-07-10 21:46:46 (GMT)
commit9d9aaef068147e022b4075bdf00defa3dc3c648a (patch)
tree70855b19d61f9ca89386a5a4bfd179715a409969
parent1d706c551bc68b771ac612e986f0ac31849b83a4 (diff)
Reverted joints back to original functionality
-rw-r--r--tools.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools.py b/tools.py
index e629202..1fbb32f 100644
--- a/tools.py
+++ b/tools.py
@@ -36,10 +36,6 @@ class Tool(object):
self.game.setTool("destroy")
elif event.key == K_m:
self.game.setTool("magicpen")
- elif event.key == K_z:
- b1 = self.game.world.world.GetBodyList()
- b2 = b1.GetNext()
- self.game.world.add.pully(b1,b2,b1.GetWorldCenter(),b2.GetWorldCenter(),(100,100),(400,100))
elif event.type == USEREVENT:
if hasattr(event,"action"):
if self.game.tools.has_key(event.action): self.game.setTool(event.action)
@@ -306,7 +302,7 @@ class DestroyTool(Tool):
if len(self.vertices) > 10:
self.vertices.pop(0)
tokill = self.game.world.get_bodies_at_pos(pygame.mouse.get_pos())
- if tokill:
+ if tokill:
self.game.world.world.DestroyBody(tokill[0])
elif event.type == MOUSEBUTTONUP and event.button == 1:
self.cancel()