1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Random guest name and finite liquid checkbox

This commit is contained in:
proller 2013-03-23 17:37:50 +04:00
parent 34b185e955
commit f98d0433f9
3 changed files with 37 additions and 2 deletions

View file

@ -52,6 +52,7 @@ struct MainMenuData
int enable_shaders;
bool preload_item_visuals;
bool enable_particles;
bool liquid_finite;
// Server options
bool creative_mode;
bool enable_damage;
@ -71,7 +72,13 @@ struct MainMenuData
MainMenuData():
// Generic
selected_tab(0),
selected_tab(
#if USE_CURL
1
#else
0
#endif
),
// Client opts
fancy_trees(false),
smooth_lighting(false),
@ -84,7 +91,13 @@ struct MainMenuData
// Actions
only_refresh(false),
serverlist_show_available(false)
serverlist_show_available(
#if USE_CURL
true
#else
false
#endif
)
{}
};