mirror of
https://github.com/minetest-mods/nether.git
synced 2024-11-13 22:10:36 +01:00
7939161535
Improvements found while using the portals API in another mod (cloudlands): * remote_portal_checkup() will check the whole portal and frame for mapgen overwrites. * Allow find_realm_anchorPos() to return nil if no realm location could be found (portal will fail to ignite). * Allow create_book_of_portals() to be invoked [indirectly] by other mods. Also lowers nether_book_close.png to be 4bpp
19 lines
1.0 KiB
Plaintext
19 lines
1.0 KiB
Plaintext
# Travelling a short distance in the Nether can correspond to a much further distance on the surface.
|
|
#
|
|
# A factor of 10 might be a better value for Minetest, since there's no sprint, but ex-Minecraft players will be mathing for 8.
|
|
nether_fasttravel_factor (Nether fast-travel factor) int 8
|
|
|
|
# The likelyhood of finding a Book containing all the portal plans in a dungeon chest.
|
|
# Set to 0 to disable, or 10 to have it extremely common.
|
|
#
|
|
# (This value will be treated as 0 when the Nether portal is the only type of portal available, or when the help modpack is installed)
|
|
nether_portalBook_loot_weighting (Likelyhood of finding Book of Portals in dungeon chests) int 9
|
|
|
|
# Turn off to disable the Nether and Nether portal
|
|
nether_realm_enabled (Enable Nether realm & portal) bool true
|
|
|
|
# Enables the Floatlands portal api code example
|
|
nether_enable_portal_example_floatlands (Enable example portal: Floatlands) bool false
|
|
|
|
# Enables the Surface-travel portal api code example
|
|
nether_enable_portal_example_surfacetravel (Enable example portal: Surface-travel) bool false |