mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-09-03 13:25:31 +02:00
minetestforfun_game
mods
3d_armor
WorldEdit
_misc
_misc_kaeza
ambience_modpack
areas
arrow_signs
awards
bedrock
beds
beginners_chest
bobblocks
bone
builtin_falling
depends.txt
func.lua
init.lua
rewirting.lua
builtin_item
carts
chatplus
chesttools
christmas_craft
coloredwood
colormachine
colouredstonebricks
columnia
darkage
death_messages
dropondie
factions
fail
farming
fences
fishing
food
framedglass
future_ban
gauges
glow
homedecor_modpack
hud
intweak
irc
irc_commands
item_drop
jumping
lantern
lavalamp
lavatemple
locked_sign
mapfix
maptools
markers
mesecons
mobs
money
more_chests
moreblocks
moreores
moretrees
multitest
name_restrictions
names_per_ip
nether
news
paintings
pipeworks
plantlife_modpack
player_inactive
playerplus
quartz
random_messages
riesenpilz
screwdriver
sea
snow
snowdrift
spawn
sponge
sprint
stained_glass
throwing
u_skins
unified_inventory
unifieddyes
vector_extras
whoison
wiki
xban2
.gitignore
LICENSE
README.md
global_to_solve.txt
update_sources.txt
21 lines
759 B
Lua
Executable File
21 lines
759 B
Lua
Executable File
dofile(minetest.get_modpath("builtin_falling") .. "/func.lua") -- Not EDIT THAT
|
|
--
|
|
-- Config
|
|
--
|
|
|
|
-- Protect in realtime the lava flowing (can be slow)
|
|
PROTECT_LAVA_REALTIME = 1 -- 0 for OFF , 1 for ON
|
|
-- Protect in realtime the water flowing (can be very slow, because some water in this world :p)
|
|
PROTECT_WATER_REALTIME = 0 -- 0 for OFF , 1 for ON
|
|
|
|
--
|
|
-- List of your node need to rewirte
|
|
--
|
|
add_falling_protect_item("default:sand")
|
|
add_falling_protect_item("default:gravel")
|
|
|
|
add_protected_bukket_liquid("bucket:bucket_lava","default:lava_source") -- lava bukket
|
|
add_protected_bukket_liquid("bucket:bucket_water","default:water_source") -- water bukket
|
|
|
|
-- Not EDIT AFTER
|
|
dofile(minetest.get_modpath("builtin_falling") .. "/rewirting.lua") -- Not EDIT THAT |