Browse Source

allow restart in battle

Laserlicht 4 months ago
parent
commit
6e9496e4bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/windows/settings/SettingsMainWindow.cpp

+ 1 - 1
client/windows/settings/SettingsMainWindow.cpp

@@ -64,7 +64,7 @@ SettingsMainWindow::SettingsMainWindow(BattleInterface * parentBattleUi) : Inter
 
 	loadButton->block(GAME->server().isGuest());
 	saveButton->block(GAME->server().isGuest() || parentBattleUi);
-	restartButton->block(GAME->server().isGuest() || parentBattleUi);
+	restartButton->block(GAME->server().isGuest());
 
 	int defaultTabIndex = 0;
 	if(parentBattleUi != nullptr)