Advertisement
katubug

ct operator not supported

Jan 18th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. //Remove PVJ Boat recipes
  2. var boats = [
  3. <pvj:jacaranda_boat>,
  4. <pvj:cherry_blossom_boat>,
  5. <pvj:juniper_boat>,
  6. <pvj:cottonwood_boat>,
  7. <pvj:baobab_boat>,
  8. <pvj:maple_boat>,
  9. <pvj:aspen_boat>,
  10. <pvj:pine_boat>,
  11. <pvj:fir_boat>,
  12. <pvj:redwood_boat>,
  13. <pvj:palm_boat>,
  14. <pvj:willow_boat>,
  15. <pvj:mangrove_boat>
  16. ] as IItemStack[];
  17.  
  18. var plank = [
  19. <pvj:planks_jacaranda>,
  20. <pvj:planks_cherry_blossom>,
  21. <pvj:planks_juniper>,
  22. <pvj:planks_cottonwood>,
  23. <pvj:planks_baobab>,
  24. <pvj:planks_maple>,
  25. <pvj:planks_aspen>,
  26. <pvj:planks_pine>,
  27. <pvj:planks_fir>,
  28. <pvj:planks_redwood>,
  29. <pvj:planks_palm>,
  30. <pvj:planks_willow>,
  31. <pvj:planks_mangrove>
  32. ] as IItemStack[];
  33.  
  34. for boat in boats {
  35. recipes.remove(boat);
  36. }
  37.  
  38. for i, boat in boats {
  39. recipes.addShaped(boat[i], [[plank[i], null, plank[i]],[<pyrotech:planks_tarred>, <pyrotech:material:23>, <pyrotech:planks_tarred>]]); ///<-- this is the line that says "operator not supported"
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement