awacke1 commited on
Commit
3340884
ยท
verified ยท
1 Parent(s): 0029495

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -61,6 +61,11 @@ WORLD_OBJECTS = [
61
  {"type": "๐ŸŒณ Trees", "emoji": "๐ŸŒฒ๐ŸŒณ๐ŸŒด", "color": 0x006400, "shape": "cylinder", "count": 8},
62
  {"type": "๐Ÿพ Animals", "emoji": "๐Ÿป๐Ÿบ๐ŸฆŒ", "color": 0x8B4513, "shape": "cube", "count": 6}
63
  ]
 
 
 
 
 
64
 
65
  # Directories and Files
66
  for d in ["chat_logs", "audio_logs"]:
@@ -728,7 +733,7 @@ def main():
728
  if audio_file:
729
  play_and_download_audio(audio_file)
730
  st.session_state.last_activity = time.time()
731
- st.success(f"๐ŸŒ„ +10 points! New Score: {st.session_state.score}")
732
 
733
  update_marquee_settings_ui()
734
  st.sidebar.title(f"๐ŸŽฎ {GAME_NAME}")
 
61
  {"type": "๐ŸŒณ Trees", "emoji": "๐ŸŒฒ๐ŸŒณ๐ŸŒด", "color": 0x006400, "shape": "cylinder", "count": 8},
62
  {"type": "๐Ÿพ Animals", "emoji": "๐Ÿป๐Ÿบ๐ŸฆŒ", "color": 0x8B4513, "shape": "cube", "count": 6}
63
  ]
64
+ PRAIRIE_LOCATIONS = {
65
+ "Deadwood, SD": (44.3769, -103.7298),
66
+ "Wind Cave National Park": (43.6047, -103.4798),
67
+ "Wyoming Spring Creek": (41.6666, -106.6666)
68
+ }
69
 
70
  # Directories and Files
71
  for d in ["chat_logs", "audio_logs"]:
 
733
  if audio_file:
734
  play_and_download_audio(audio_file)
735
  st.session_state.last_activity = time.time()
736
+ st.success(f"๐ŸŒ„ +10 points! New Score: ${st.session_state.score}")
737
 
738
  update_marquee_settings_ui()
739
  st.sidebar.title(f"๐ŸŽฎ {GAME_NAME}")