Advertisement
posicat

Untitled

Sep 21st, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. --File: /cattech/cattech.lua
  2.  
  3. local cattech = { path="/cattech/" }
  4.  
  5. local cattech.placableLights = {
  6.     "minecraft:torch",
  7.     "minecraft:soul_torch"
  8. }
  9.  
  10. local cattech.liquidBlocks = {
  11.     "minecraft:water",
  12.     "minecraft:lava",
  13. }
  14.  
  15. local cattech.secureBlocks = {
  16.     "minecraft:glass",
  17.     "minecraft:cobblestone",
  18.     "minecraft:cobbled_deepslate",
  19.     "minecraft:netherrack",
  20.     "minecraft:end_stone",
  21.     "minecraft:dirt"
  22. }
  23.  
  24. return cattech
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement