diff --git a/mesh_bot.py b/mesh_bot.py index ae06c20..3a3b7a3 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -488,7 +488,7 @@ def handleGolf(nodeID, message): logger.debug("System: GolfSim: New Player: " + str(nodeID)) golfTracker.append({'nodeID': nodeID, 'last_played': time.time(), 'cmd': 'new', 'hole': 1, 'distance_remaining': 0, 'hole_shots': 0, 'hole_strokes': 0, 'hole_to_par': 0, 'total_strokes': 0, 'total_to_par': 0}) msg = f"Welcome to 🏌️GolfSim⛳️\n" - msg += f"Clubs: (D)river, (H)igh Iron, (M)id Iron, (L)ow Iron, (G)ap Wedge, Lob (W)edge\n" + msg += f"Clubs: (D)river, (L)ow Iron, (M)id Iron, (H)igh Iron, (G)ap Wedge, Lob (W)edge\n" msg += playGolf(nodeID=nodeID, message=message) # wait a second to keep from message collision diff --git a/modules/golfsim.py b/modules/golfsim.py index 87d8e4f..18df618 100644 --- a/modules/golfsim.py +++ b/modules/golfsim.py @@ -207,7 +207,7 @@ def playGolf(nodeID, message): last_cmd = 'putt' else: msg += "You have " + str(distance_remaining) + " yards left." - msg += f"\nClub?[D, H, M, L, G, W]🏌️" + msg += f"\nClub?[D, L, M, H, G, W]🏌️" # save player's current game state, keep stroking for i in range(len(golfTracker)):