|
@@ -179,7 +179,9 @@ def depot():
|
|
|
if response['banking_license']:
|
|
|
print(f'Also, you have a banking license.')
|
|
|
minimum_reserve = response['minimum_reserve']
|
|
|
- print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve} at the central bank as a security for your credits.')
|
|
|
+ print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve}{CURRENCY_SYMBOL} '
|
|
|
+ f'at the central bank as a security for your credits.')
|
|
|
+ print('This minimum reserve has already been subtracted from the displayed amount.')
|
|
|
else:
|
|
|
if 'error' in response:
|
|
|
print('Depot access failed with message:', response['error'])
|