Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @Override
  2. public void update() {
  3. // Generate ions whenever loaded and there is coal in the slot
  4. if (isIonCreaterActive==true) {
  5. if (force_lasers_ions<100) {
  6. if (coal_left==0) {
  7. if (getStackInSlot(0)!=null) {
  8. decrStackSize(0, 1);
  9. coal_left=20;
  10. }
  11. }
  12. if(coal_left>0){
  13. force_lasers_ions+=1;
  14. coal_left-=1;
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement