Ver código fonte

Improve resource printing

Tankernn 7 anos atrás
pai
commit
7bf2098c8e
1 arquivos alterados com 6 adições e 1 exclusões
  1. 6 1
      cbc/client.py

+ 6 - 1
cbc/client.py

@@ -109,7 +109,12 @@ class MyPrompt(Cmd):
         """List available resources."""
         global player_data
         for resource, amount in player_data['resources'].items():
-            print(resource.title() + ": " + str(int(amount)) + " / " + str(player_data['resources_max'][resource]))
+            print("{}: {} / {} ({}/s)".format(
+                resource.title(),
+                int(amount),
+                player_data['resources_max'][resource],
+                player_data['resources_production'][resource]
+            ))
 
     def do_buildings(self, args):
         """List the buildings of the city and their levels."""