Merge branch 'lakebane-old' into lakebane-master
# Conflicts: # src/engine/gameManager/LootManager.java
This commit is contained in:
@@ -1631,8 +1631,8 @@ public class ClientMessagePump implements NetMsgHandler {
|
|||||||
if (toRepair == null)
|
if (toRepair == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (toRepair.getItemBase().isGlass())
|
//if (toRepair.getItemBase().isGlass())
|
||||||
return;
|
// return;
|
||||||
|
|
||||||
//make sure item is in player's inventory or equipment
|
//make sure item is in player's inventory or equipment
|
||||||
if (!itemMan.inventoryContains(toRepair) && !itemMan.equippedContains(toRepair))
|
if (!itemMan.inventoryContains(toRepair) && !itemMan.equippedContains(toRepair))
|
||||||
@@ -1654,6 +1654,12 @@ public class ClientMessagePump implements NetMsgHandler {
|
|||||||
}
|
}
|
||||||
//TODO get cost to repair
|
//TODO get cost to repair
|
||||||
int cost = (int) ((max - dur) * 80.1);
|
int cost = (int) ((max - dur) * 80.1);
|
||||||
|
|
||||||
|
//glass costs 3x as much to repair
|
||||||
|
if (toRepair.getItemBase().isGlass()){
|
||||||
|
cost *= 3;
|
||||||
|
}
|
||||||
|
|
||||||
Building b = (!npc.isStatic()) ? npc.getBuilding() : null;
|
Building b = (!npc.isStatic()) ? npc.getBuilding() : null;
|
||||||
|
|
||||||
if (b != null)
|
if (b != null)
|
||||||
|
|||||||
@@ -94,12 +94,11 @@ public class HourlyJobThread implements Runnable {
|
|||||||
// This will reset at 1am after the last mine
|
// This will reset at 1am after the last mine
|
||||||
// window closes.
|
// window closes.
|
||||||
|
|
||||||
if (LocalDateTime.now().getHour() == MINE_LATE_WINDOW + 1) {
|
if (LocalDateTime.now().getHour() == 3) {
|
||||||
|
|
||||||
for (Mine mine : Mine.getMines()) {
|
for (Mine mine : Mine.getMines()) {
|
||||||
|
mine.wasClaimed = false;
|
||||||
if (mine.wasClaimed == true)
|
mine.hasProduced = false;
|
||||||
mine.wasClaimed = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user