|
|
|
@ -68,7 +68,6 @@ public class ItemBase {
@@ -68,7 +68,6 @@ public class ItemBase {
|
|
|
|
|
private final engine.Enum.SourceType damageType; |
|
|
|
|
private final boolean twoHanded; |
|
|
|
|
private boolean isConsumable; |
|
|
|
|
private boolean isStackable; |
|
|
|
|
|
|
|
|
|
// Item stat modifiers
|
|
|
|
|
private final HashMap<Integer, Integer> bakedInStats = new HashMap<>(); |
|
|
|
@ -95,7 +94,6 @@ public class ItemBase {
@@ -95,7 +94,6 @@ public class ItemBase {
|
|
|
|
|
this.hashID = rs.getInt("itemHashID"); |
|
|
|
|
|
|
|
|
|
this.isConsumable = false; |
|
|
|
|
this.isStackable = false; |
|
|
|
|
|
|
|
|
|
this.equipFlag = rs.getInt("equipFlag"); |
|
|
|
|
this.restrictFlag = rs.getInt("restrictFlag"); |
|
|
|
@ -141,10 +139,6 @@ public class ItemBase {
@@ -141,10 +139,6 @@ public class ItemBase {
|
|
|
|
|
this.isConsumable = true; |
|
|
|
|
Boon.HandleBoonListsForItemBase(uuid); |
|
|
|
|
break; |
|
|
|
|
case RESOURCE: |
|
|
|
|
this.isStackable = true; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.autoIDItemsCheck(); |
|
|
|
|