ainslec / adventuron-issue-tracker

Adventuron Issues Tracker
4 stars 0 forks source link

Problem formatting non treasures when in treasure hunt mode #464

Closed ainslec closed 2 years ago

ainslec commented 2 years ago

Problem formatting non treasures when in treasure hunt mode (crashes screen layout)

(bug in betabeta only)

image

start_at      = my_location
treasure_room = my_location_2

locations {
   my_location   : location "You are in the start room. You can go to the east.";
   my_location_2 : location "You are in the treasure room. You can go to the west.";

}

connections {
   from, direction, to = [
      my_location, east, my_location_2, 
   ]
}

objects {
   // If change treasure="true" here then it works
   shiny_thing : object "a shiny thing" msg = "This is a shiny thing."  at = "my_location" treasure = "false" ;

   ggg : object "ggg" treasure = "true" ;

}

themes {
   my_theme : theme {
      theme_settings {
         layout = SB G D O
      }
      colors {
         treasure_pen = #r
      }
   }
}
ainslec commented 2 years ago

Fixed in beta 74v