mirror of
https://github.com/HybridDog/nether-pack.git
synced 2024-11-16 23:40:20 +01:00
01cd7c8e5b
* Remove code which uses the font size setting to position text and images. Instead use Minetest's hypertext formspec element * Rewrite many parts of the guide contents, e.g. "you" -> "we", more detailed portal description * Add a setting to permit viewing it in the overworld (enabled by default) * Update the Readme I have set the font size to 24, which works well for me on a 1920x1080 screen with somewhat high DPI. The text written in hypertext apparently ignores the Minetest font size setting, so it may look bad on different screens.
18 lines
387 B
Lua
18 lines
387 B
Lua
read_globals = {
|
|
-- Defined by Minetest
|
|
"minetest", "vector", "PseudoRandom", "VoxelArea", "ItemStack", "dump",
|
|
"string",
|
|
|
|
-- Mods
|
|
"default", "stairs", "creative"
|
|
}
|
|
globals = {"nether"}
|
|
ignore = {
|
|
"212",
|
|
-- Unused argument
|
|
"411", "421", "422", "423", "431", "432",
|
|
-- Shadowing
|
|
}
|
|
-- Allow very long lines in guide.lua for the HTML code
|
|
files["guide.lua"] = {ignore = {"631"}}
|