浏览代码

Fix wrong savefiles shown while playing Hotseat Mode (#585)

* Fix wrong save files shown in HotSeat mode

Previous condition only checked for players' connection ID. HotSeat mode does not use multiple connection IDs, so getLoadMode() thought it was SPMode.
Now checking number of interfaces to cover offline-multiplayer.
Ewilhan 6 年之前
父节点
当前提交
b5243602ca
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      client/CServerHandler.cpp

+ 2 - 0
client/CServerHandler.cpp

@@ -541,6 +541,8 @@ ui8 CServerHandler::getLoadMode()
 			if(pn.second.connection != c->connectionID)
 				return ELoadMode::MULTI;
 		}
+		if(howManyPlayerInterfaces() > 1)  //this condition will work for hotseat mode OR multiplayer with allowed more than 1 color per player to control
+			return ELoadMode::MULTI;
 
 		return ELoadMode::SINGLE;
 	}