forked from MagicBane/Server
stupid error fixed (!=)
This commit is contained in:
@@ -57,7 +57,7 @@ public class DestroyBuildingHandler extends AbstractClientMsgHandler {
|
|||||||
if (!BuildingManager.PlayerCanControlNotOwner(building, pc))
|
if (!BuildingManager.PlayerCanControlNotOwner(building, pc))
|
||||||
return true;
|
return true;
|
||||||
Bane bane = city.getBane();
|
Bane bane = city.getBane();
|
||||||
if(bane.getSiegePhase() != Enum.SiegePhase.WAR && bane != null) {
|
if(bane.getSiegePhase() == Enum.SiegePhase.WAR && bane != null) {
|
||||||
ErrorPopupMsg.sendErrorPopup(pc, 171);
|
ErrorPopupMsg.sendErrorPopup(pc, 171);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user