Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public void update() {
- // Generate ions whenever loaded and there is coal in the slot
- if (isIonCreaterActive==true) {
- if (force_lasers_ions<100) {
- if (coal_left==0) {
- if (getStackInSlot(0)!=null) {
- decrStackSize(0, 1);
- coal_left=20;
- }
- }
- if(coal_left>0){
- force_lasers_ions+=1;
- coal_left-=1;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement