From 9855656e9aa800c1881c23155b70107f65dfee8d Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 21 Sep 2024 14:23:10 -0700 Subject: [PATCH] Update dopewar.py --- modules/dopewar.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/dopewar.py b/modules/dopewar.py index f80473b..08795d5 100644 --- a/modules/dopewar.py +++ b/modules/dopewar.py @@ -329,7 +329,7 @@ def get_location_table(nodeID, choice=0): loc_table_string = '' for i in range(len(loc)): loc_table_string += str(i+1) + '. ' + loc[i] + ' ' - loc_table_string += f'Where do you want to go?#' + loc_table_string += f'\nWhere do you want to 🛫?#' return loc_table_string @@ -421,7 +421,8 @@ def render_game_screen(userID, day_play, total_day, loc_choice, event_number, pr if dwCashDb[i].get('userID') == userID: cash = dwCashDb[i].get('cash') - msg += "Location: " + loc[int(loc_choice) - 1] + ", Day:" + str(day_play) + '/' + str(total_day) + ", $" + str(cash) + " 🎒: " + str(inventory) + "/100" + f"\n" + msg += "Location: " + loc[int(loc_choice) - 1] + ", Day:" + str(day_play) + '/' + str(total_day) + " 🎒: " + str(inventory) + "/100" + ", $" + str(cash) + f"\n" + for i, drug in enumerate(my_drugs, 1): qty = amount[i-1] msg += f'#{str(i)}.{drug.name}/${price_list[i-1]}({qty}) '