diff --git a/src/game/engine/src/modules/empire/throne_room_profile.gd b/src/game/engine/src/modules/empire/throne_room_profile.gd index 84543066..a6d4d962 100644 --- a/src/game/engine/src/modules/empire/throne_room_profile.gd +++ b/src/game/engine/src/modules/empire/throne_room_profile.gd @@ -12,10 +12,6 @@ const ThroneRoomHarvestScript = preload( "res://engine/src/modules/empire/throne_room_harvest.gd" ) -## Decoration IDs earned in the most recent completed game. -## Consumed by main_menu when it shows the spoils overlay. -var pending_spoils: Array[String] = [] - const DEFAULT_STATS: Dictionary = { "best_era": 0, "victories": 0, @@ -35,6 +31,10 @@ const DEFAULT_STATS: Dictionary = { "legendary_unit_promoted": 0, } +## Decoration IDs earned in the most recent completed game. +## Consumed by main_menu when it shows the spoils overlay. +var pending_spoils: Array[String] = [] + var race: String = "dwarf" var game_records: Array = [] var lifetime_stats: Dictionary = {}