Set this stack's repair cost.
(int cost)
| 962 | * Set this stack's repair cost. |
| 963 | */ |
| 964 | public void setRepairCost(int cost) |
| 965 | { |
| 966 | if (!this.hasTagCompound()) |
| 967 | { |
| 968 | this.stackTagCompound = new NBTTagCompound(); |
| 969 | } |
| 970 | |
| 971 | this.stackTagCompound.setInteger("RepairCost", cost); |
| 972 | } |
| 973 | |
| 974 | public Multimap<String, AttributeModifier> getAttributeModifiers() |
| 975 | { |
no test coverage detected