mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-13 11:40:38 +02:00
commit
94e661b2bf
@ -196,7 +196,7 @@ void VCAI::showShipyardDialog(const IShipyard *obj)
|
||||
|
||||
void VCAI::gameOver(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult)
|
||||
{
|
||||
LOG_TRACE_PARAMS(logAi, "victoryLossCheckResult '%s'", victoryLossCheckResult);
|
||||
LOG_TRACE_PARAMS(logAi, "victoryLossCheckResult '%s'", victoryLossCheckResult.messageToSelf);
|
||||
NET_EVENT_HANDLER;
|
||||
logAi->debugStream() << boost::format("Player %d: I heard that player %d %s.") % playerID % player.getNum() % (victoryLossCheckResult.victory() ? "won" : "lost");
|
||||
if(player == playerID)
|
||||
|
@ -1516,7 +1516,7 @@ struct ObstaclesRemoved : public CPackForClient //3014
|
||||
};
|
||||
|
||||
//FIXME: figure out why gcc fails to find type_info for this class with -fvisibility=hidden flag set
|
||||
#ifdef __linux__
|
||||
#if defined(__linux__) || defined(__APPLE__)
|
||||
struct DLL_LINKAGE CatapultAttack : public CPackForClient //3015
|
||||
#else
|
||||
struct CatapultAttack : public CPackForClient //3015
|
||||
|
@ -65,7 +65,7 @@ public:
|
||||
walkersStrength(0)
|
||||
{}
|
||||
|
||||
bool operator <(const CArmyStructure & other)
|
||||
bool operator <(const CArmyStructure & other) const
|
||||
{
|
||||
return this->totalStrength < other.totalStrength;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user