Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/physics.py
diff options
context:
space:
mode:
Diffstat (limited to 'physics.py')
-rw-r--r--physics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/physics.py b/physics.py
index b2ca2cb..ef9b2b9 100644
--- a/physics.py
+++ b/physics.py
@@ -71,7 +71,7 @@ class PhysicsGame:
self.currentTool.draw()
#Print all the text on the screen
- text = self.font.render("Current Tool: "+self.currentTool.name, True, (255,255,255))
+ text = self.font.render("Total Cost: %d" % self.bridge.cost, True, (0,0,0))
textpos = text.get_rect(left=700,top=7)
self.screen.blit(text,textpos)