(long aMeta, ItemStack aStack)
| 324 | } |
| 325 | |
| 326 | public static ItemStack copyMeta(long aMeta, ItemStack aStack) { |
| 327 | return aStack == null || item_(aStack) == null ? null : meta_(copy_(aStack), aMeta); |
| 328 | } |
| 329 | public static ItemStack copyAmountAndMeta(long aSize, long aMeta, ItemStack aStack) { |
| 330 | return aStack == null || item_(aStack) == null ? null : meta_(amount_(aSize, aStack), aMeta); |
| 331 | } |
no test coverage detected