enable legacy dripstone by default, at least for now.

This commit is contained in:
FaceDeer 2018-05-24 00:30:53 -06:00
parent d5cd5ba3e1
commit c2000ac612
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
--These nodes used to be defined by subterrane but were pulled due to not wanting to force all mods that use it to create these nodes.
--For backwards compatibility they can still be defined here, however.
if minetest.setting_getbool("subterrane_enable_legacy_dripstone") then
local enable_legacy = minetest.setting_getbool("subterrane_enable_legacy_dripstone")
if enable_legacy == nil or enable_legacy == true then
subterrane.register_stalagmite_nodes("subterrane:dry_stal", {
description = "Dry Dripstone",

View File

@ -1 +1 @@
subterrane_enable_legacy_dripstone (Adds old dripstone node definitions) bool false
subterrane_enable_legacy_dripstone (Adds old dripstone node definitions) bool true