mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-29 09:44:52 +01:00
Introduce Scenario::Options struct; move cash and guest options
This commit is contained in:
@@ -161,22 +161,22 @@ namespace OpenRCT2::Scripting
|
||||
|
||||
money64 ScPark::guestInitialCash_get() const
|
||||
{
|
||||
return getGameState().guestInitialCash;
|
||||
return getGameState().scenarioOptions.guestInitialCash;
|
||||
}
|
||||
|
||||
uint8_t ScPark::guestInitialHappiness_get() const
|
||||
{
|
||||
return getGameState().guestInitialHappiness;
|
||||
return getGameState().scenarioOptions.guestInitialHappiness;
|
||||
}
|
||||
|
||||
uint8_t ScPark::guestInitialHunger_get() const
|
||||
{
|
||||
return getGameState().guestInitialHunger;
|
||||
return getGameState().scenarioOptions.guestInitialHunger;
|
||||
}
|
||||
|
||||
uint8_t ScPark::guestInitialThirst_get() const
|
||||
{
|
||||
return getGameState().guestInitialThirst;
|
||||
return getGameState().scenarioOptions.guestInitialThirst;
|
||||
}
|
||||
|
||||
money64 ScPark::value_get() const
|
||||
|
||||
Reference in New Issue
Block a user