|
@@ -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."""
|