diff --git a/planet/Worlds.ocf/AcidGoldMine.ocs/Script.c b/planet/Worlds.ocf/AcidGoldMine.ocs/Script.c index fd6e798f8..7ccf93e82 100644 --- a/planet/Worlds.ocf/AcidGoldMine.ocs/Script.c +++ b/planet/Worlds.ocf/AcidGoldMine.ocs/Script.c @@ -8,6 +8,9 @@ protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Rules: team account and buying at flagpole. CreateObject(Rule_TeamAccount); CreateObject(Rule_BuyAtFlagpole); diff --git a/planet/Worlds.ocf/AcidRift.ocs/Script.c b/planet/Worlds.ocf/AcidRift.ocs/Script.c index 3d81f99ac..2a5d19b7c 100644 --- a/planet/Worlds.ocf/AcidRift.ocs/Script.c +++ b/planet/Worlds.ocf/AcidRift.ocs/Script.c @@ -16,6 +16,9 @@ static g_start_x, g_start_y; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Goal: Ruby mine var goal = CreateObject(Goal_SellGems); goal->SetTargetAmount(BoundBy(SCENPAR_Difficulty*10, 10, 20)); diff --git a/planet/Worlds.ocf/Chine.ocs/Script.c b/planet/Worlds.ocf/Chine.ocs/Script.c index 91dae6678..b68f4db46 100644 --- a/planet/Worlds.ocf/Chine.ocs/Script.c +++ b/planet/Worlds.ocf/Chine.ocs/Script.c @@ -11,6 +11,9 @@ static intro_init; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Rules: team account and buying at flagpole. CreateObject(Rule_TeamAccount); CreateObject(Rule_BuyAtFlagpole); diff --git a/planet/Worlds.ocf/FloodedVeins.ocs/Script.c b/planet/Worlds.ocf/FloodedVeins.ocs/Script.c index dc2d646f3..c1fec7afb 100644 --- a/planet/Worlds.ocf/FloodedVeins.ocs/Script.c +++ b/planet/Worlds.ocf/FloodedVeins.ocs/Script.c @@ -15,6 +15,9 @@ static first_plr_init; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Rules: team account and buying at flagpole. CreateObject(Rule_TeamAccount); CreateObject(Rule_BuyAtFlagpole); diff --git a/planet/Worlds.ocf/GemGrabbers.ocs/Script.c b/planet/Worlds.ocf/GemGrabbers.ocs/Script.c index 70cc8350a..fc0d1cca1 100644 --- a/planet/Worlds.ocf/GemGrabbers.ocs/Script.c +++ b/planet/Worlds.ocf/GemGrabbers.ocs/Script.c @@ -15,6 +15,9 @@ protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Rules: team account and buying at flagpole. CreateObject(Rule_TeamAccount); CreateObject(Rule_BuyAtFlagpole); diff --git a/planet/Worlds.ocf/GoldRush.ocs/Script.c b/planet/Worlds.ocf/GoldRush.ocs/Script.c index d31ba617c..896cbcfc2 100644 --- a/planet/Worlds.ocf/GoldRush.ocs/Script.c +++ b/planet/Worlds.ocf/GoldRush.ocs/Script.c @@ -11,6 +11,9 @@ static intro_init; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Rules: team account and buying at flagpole. CreateObject(Rule_TeamAccount); CreateObject(Rule_BuyAtFlagpole); @@ -32,7 +35,6 @@ protected func Initialize() InitVegetation(SCENPAR_MapSize); InitAnimals(SCENPAR_MapSize); InitMaterial(4 - SCENPAR_Difficulty); - return; } diff --git a/planet/Worlds.ocf/IronPeak.ocs/Script.c b/planet/Worlds.ocf/IronPeak.ocs/Script.c index f7034ebcc..18ebb5f5a 100644 --- a/planet/Worlds.ocf/IronPeak.ocs/Script.c +++ b/planet/Worlds.ocf/IronPeak.ocs/Script.c @@ -13,6 +13,9 @@ static intro_init; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Goal: Expand your area of influence to secure the ore. var goal = CreateObject(Goal_Expansion); goal->SetExpansionGoal(300 + 100 * SCENPAR_Difficulty); diff --git a/planet/Worlds.ocf/Krakatoa.ocs/Script.c b/planet/Worlds.ocf/Krakatoa.ocs/Script.c index f0665b37a..8a19e901a 100644 --- a/planet/Worlds.ocf/Krakatoa.ocs/Script.c +++ b/planet/Worlds.ocf/Krakatoa.ocs/Script.c @@ -14,6 +14,9 @@ static intro_init; protected func Initialize() { + // Show wealth in HUD. + GUI_Controller->ShowWealth(); + // Goal: construct an airplane and fill it with gold bars. var goal = CreateObject(Goal_Script); // Add an effect to check whether the goal is fulfilled.