mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 10:51:58 -05:00
Fix: Load game / Quit to the menu are not working in multiplayer (#13619)
This commit is contained in:
parent
4ac3b27ae9
commit
cc6b56f1f5
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ LoadOrQuitAction::LoadOrQuitAction(LoadOrQuitModes mode, PromptMode savePromptMo
|
|||
|
||||
uint16_t LoadOrQuitAction::GetActionFlags() const
|
||||
{
|
||||
return GameAction::GetActionFlags() | GameActions::Flags::AllowWhilePaused;
|
||||
return GameAction::GetActionFlags() | GameActions::Flags::ClientOnly | GameActions::Flags::AllowWhilePaused;
|
||||
}
|
||||
|
||||
void LoadOrQuitAction::Serialise(DataSerialiser& stream)
|
||||
|
|
Loading…
Reference in a new issue