forked from minetest-mods/nether
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
4950143a00
11
README.md
11
README.md
@ -1,8 +1,8 @@
|
|||||||
# Nether Mod for Minetest, with Portals API.
|
# Nether Mod for Minetest, with Portals API.
|
||||||
|
|
||||||
Enables Nether portals to be built, opening a gateway between the surface
|
Allows Nether portals to be constructed, opening a gateway between the surface
|
||||||
realm and one of lava and netherrack, with rumors of a passageway to a great
|
realm and one of lava and netherrack, with rumors of a passageway through the
|
||||||
magma ocean.
|
netherrack to a great magma ocean.
|
||||||
|
|
||||||
To view the options provided by this mod, see settingtypes.txt or
|
To view the options provided by this mod, see settingtypes.txt or
|
||||||
go to "Settings"->"All Settings"->"Mods"->"nether" in the game.
|
go to "Settings"->"All Settings"->"Mods"->"nether" in the game.
|
||||||
@ -23,6 +23,11 @@ might need to be constructed from basalt, thus requiring a journey through
|
|||||||
the nether first, or basalt might be a crafting ingredient required to reach
|
the nether first, or basalt might be a crafting ingredient required to reach
|
||||||
a particular branch of the tech-tree.
|
a particular branch of the tech-tree.
|
||||||
|
|
||||||
|
Netherbrick tools are provided (pick, shovel, axe, & sword), see tools.lua
|
||||||
|
|
||||||
|
Nether Portals can allow surface fast-travel.
|
||||||
|
|
||||||
|
|
||||||
## License of source code:
|
## License of source code:
|
||||||
|
|
||||||
Copyright (C) 2013 PilzAdam
|
Copyright (C) 2013 PilzAdam
|
||||||
|
@ -374,7 +374,7 @@ minetest.register_on_mods_loaded(function()
|
|||||||
|
|
||||||
-- register a bucket of Lava-sea source - but make it just the same bucket as default lava.
|
-- register a bucket of Lava-sea source - but make it just the same bucket as default lava.
|
||||||
-- (by doing this in register_on_mods_loaded we don't need to declare a soft dependency)
|
-- (by doing this in register_on_mods_loaded we don't need to declare a soft dependency)
|
||||||
if minetest.get_modpath("bucket") and minetest.global_exists("bucket") then
|
if minetest.get_modpath("bucket") and minetest.global_exists("bucket") and type(bucket.liquids) == "table" then
|
||||||
local lava_bucket = bucket.liquids["default:lava_source"]
|
local lava_bucket = bucket.liquids["default:lava_source"]
|
||||||
if lava_bucket ~= nil then
|
if lava_bucket ~= nil then
|
||||||
local lavasea_bucket = {}
|
local lavasea_bucket = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user