forked from VoxeLibre/VoxeLibre
Change max_bossbars default to 4
This commit is contained in:
parent
6a1a634cba
commit
d77affca91
|
@ -3,7 +3,7 @@ mcl_bossbars = {
|
||||||
huds = {},
|
huds = {},
|
||||||
static = {},
|
static = {},
|
||||||
colors = {"light_purple", "blue", "red", "green", "yellow", "dark_purple", "white"},
|
colors = {"light_purple", "blue", "red", "green", "yellow", "dark_purple", "white"},
|
||||||
max_bars = tonumber(minetest.settings:get("max_bossbars")) or 6
|
max_bars = tonumber(minetest.settings:get("max_bossbars")) or 4
|
||||||
}
|
}
|
||||||
|
|
||||||
function mcl_bossbars.recalculate_colors()
|
function mcl_bossbars.recalculate_colors()
|
||||||
|
|
|
@ -98,7 +98,7 @@ animated_chests (Animated chests) bool true
|
||||||
3d_player_preview (3D Player preview) bool true
|
3d_player_preview (3D Player preview) bool true
|
||||||
|
|
||||||
# The maximum number of boss bars to simultaniously display on the screen
|
# The maximum number of boss bars to simultaniously display on the screen
|
||||||
max_bossbars (Maximum Boss bars) int 6
|
max_bossbars (Maximum Boss bars) int 4
|
||||||
|
|
||||||
[Experimental]
|
[Experimental]
|
||||||
# Whether ice is translucent. If disabled, ice is fully opaque.
|
# Whether ice is translucent. If disabled, ice is fully opaque.
|
||||||
|
|
Loading…
Reference in New Issue