various console error fixes

This commit is contained in:
2024-02-17 18:59:44 -06:00
parent 78cf95d290
commit 409f8aa847
4 changed files with 14 additions and 6 deletions
@@ -126,7 +126,7 @@ public class ActivateNPCMsgHandler extends AbstractClientMsgHandler {
return false;
// Check if contract can be slotted in this building
Logger.error("inserting contract: " + contract.getContractID());
//Logger.error("inserting contract: " + contract.getContractID());
if (contract.canSlotinBuilding(building) == false) {
boolean override = false;
if (building.getBlueprint().getBuildingGroup().equals(Enum.BuildingGroup.TOL)) {
@@ -152,7 +152,7 @@ public class ActivateNPCMsgHandler extends AbstractClientMsgHandler {
return false;
}
}
Logger.error("override successful: " + contract.getContractID());
//Logger.error("override successful: " + contract.getContractID());
if (!BuildingManager.addHireling(building, player, zone, contract, contractItem))
return false;