Merge latest builtin

This commit is contained in:
Maksim Gamarnik 2016-02-09 00:00:25 +02:00
parent e4364bcff6
commit 925a9d8373
3 changed files with 12 additions and 5 deletions

View File

@ -12,7 +12,11 @@ if core.print then
-- Override native print and use -- Override native print and use
-- terminal if that's turned on -- terminal if that's turned on
function print(...) function print(...)
core_print(table.concat({...}, "\t")) local n, t = select("#", ...), { ... }
for i = 1, n do
t[i] = tostring(t[i])
end
core_print(table.concat(t, "\t"))
end end
core.print = nil -- don't pollute our namespace core.print = nil -- don't pollute our namespace
end end

View File

@ -279,6 +279,9 @@ enable_clouds (Clouds) bool true
# Use 3D cloud look instead of flat. # Use 3D cloud look instead of flat.
enable_3d_clouds (3D clouds) bool true enable_3d_clouds (3D clouds) bool true
# Method used to highlight selected object.
node_highlighting (Node highlighting) enum box box,halo
[***Filtering] [***Filtering]
# Use mip mapping to scale textures. May slightly increase performance. # Use mip mapping to scale textures. May slightly increase performance.
@ -482,9 +485,6 @@ desynchronize_mapblock_texture_animation (Desynchronize block animation) bool tr
# Useful if there's something to be displayed right or left of hotbar. # Useful if there's something to be displayed right or left of hotbar.
hud_hotbar_max_width (Maximum hotbar width) float 1.0 hud_hotbar_max_width (Maximum hotbar width) float 1.0
# Enable selection highlighting for nodes (disables selectionbox).
enable_node_highlighting (Node highlighting) bool false
# Enables caching of facedir rotated meshes. # Enables caching of facedir rotated meshes.
enable_mesh_cache (Mesh cache) bool false enable_mesh_cache (Mesh cache) bool false
@ -508,6 +508,9 @@ directional_colored_fog (Colored fog) bool true
# set to the nearest valid value. # set to the nearest valid value.
ambient_occlusion_gamma (Ambient occlusion gamma) float 2.2 0.25 4.0 ambient_occlusion_gamma (Ambient occlusion gamma) float 2.2 0.25 4.0
# Enables animation of inventory items.
inventory_items_animations (Inventory items animations) bool false
[**Menus] [**Menus]
# Use a cloud animation for the main menu background. # Use a cloud animation for the main menu background.