Advertisement
Krypt0n_C0R3

data-updates.lua

Apr 2nd, 2025 (edited)
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.22 KB | None | 0 0
  1.     local machines = {
  2.         data.raw["beacon"],
  3.         data.raw["assembling-machine"],
  4.         data.raw["lab"],
  5.         data.raw["mining-drill"]
  6.     }
  7.  
  8.     for _, machineType in pairs(machines) do
  9.         for _, machine in pairs(machineType) do
  10.             if not (machine.allowed_module_categories == nil) then
  11.                 for i, moduleCat in pairs(machine.allowed_module_categories) do
  12.                     if moduleCat.name == "hc-heating-coils" then
  13.                         table.remove(machine.allowed_module_categories,i)
  14.                         break
  15.                     end
  16.                 end
  17.             elseif not(machine.module_slots == nil) and machine.module_slots > 0 and not(machine.allowed_effects == nil)  then
  18.                 if(machine.allowed_module_categories == nil) then
  19.                     machine.allowed_module_categories = {}
  20.                 end
  21.  
  22.                 for _, moduleCat in pairs(data.raw["module-category"]) do
  23.                     if not(moduleCat.name == "hc-heating-coils") then
  24.                        
  25.                         table.insert(machine.allowed_module_categories,moduleCat.name)
  26.                     end
  27.                 end
  28.             end
  29.         end
  30.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement