Ver código fonte

Show max resource capacity in resource list

Frans Bergman 7 anos atrás
pai
commit
aae3bd5193
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      cbc/client.py

+ 1 - 1
cbc/client.py

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