mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
getDepletion and getXenonPoison functions
This commit is contained in:
parent
7165e208a0
commit
c41244da58
@ -377,4 +377,22 @@ public class TileEntityRBMKRod extends TileEntityRBMKSlottedBase implements IRBM
|
|||||||
public Object[] getFluxFast(Context context, Arguments args) {
|
public Object[] getFluxFast(Context context, Arguments args) {
|
||||||
return new Object[] {fluxFast};
|
return new Object[] {fluxFast};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Callback
|
||||||
|
@Optional.Method(modid = "OpenComputers")
|
||||||
|
public Object[] getDepletion(Context context, Arguments args) {
|
||||||
|
if(slots[0] != null && slots[0].getItem() instanceof ItemRBMKRod) {
|
||||||
|
return new Object[] {ItemRBMKRod.getEnrichment(slots[0])};
|
||||||
|
}
|
||||||
|
return new Object[] {"N/A"};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Callback
|
||||||
|
@Optional.Method(modid = "OpenComputers")
|
||||||
|
public Object[] getXenonPoison(Context context, Arguments args) {
|
||||||
|
if(slots[0] != null && slots[0].getItem() instanceof ItemRBMKRod) {
|
||||||
|
return new Object[] {ItemRBMKRod.getPoison(slots[0])};
|
||||||
|
}
|
||||||
|
return new Object[] {"N/A"};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user