MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / setLighterFuel

Method setLighterFuel

src/main/java/gregapi/util/UT.java:2085–2090  ·  view source on GitHub ↗
(ItemStack aStack, long aFuel)

Source from the content-addressed store, hash-verified

2083 }
2084
2085 public static NBTTagCompound setLighterFuel(ItemStack aStack, long aFuel) {
2086 NBTTagCompound tNBT = getNBT(aStack);
2087 setNumber(tNBT, "gt.lighter", aFuel);
2088 set(aStack, tNBT);
2089 return tNBT;
2090 }
2091 public static long getLighterFuel(ItemStack aStack) {
2092 NBTTagCompound tNBT = getNBT(aStack);
2093 return tNBT.getLong("gt.lighter");

Callers 3

onLeftClickEntityMethod · 0.80
onItemUseFirstMethod · 0.80
prepareMethod · 0.80

Calls 3

getNBTMethod · 0.95
setNumberMethod · 0.95
setMethod · 0.95

Tested by

no test coverage detected