mirror of
https://github.com/minetest/minetest.git
synced 2025-01-10 15:27:29 +01:00
32 lines
903 B
C
32 lines
903 B
C
// Minetest
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#include "settings.h"
|
|
#include "server.h"
|
|
|
|
void migrate_settings()
|
|
{
|
|
// Converts opaque_water to translucent_liquids
|
|
if (g_settings->existsLocal("opaque_water")) {
|
|
g_settings->set("translucent_liquids",
|
|
g_settings->getBool("opaque_water") ? "false" : "true");
|
|
g_settings->remove("opaque_water");
|
|
}
|
|
|
|
// Converts enable_touch to touch_controls/touch_gui
|
|
if (g_settings->existsLocal("enable_touch")) {
|
|
bool value = g_settings->getBool("enable_touch");
|
|
g_settings->setBool("touch_controls", value);
|
|
g_settings->setBool("touch_gui", value);
|
|
g_settings->remove("enable_touch");
|
|
}
|
|
|
|
// Disables anticheat
|
|
if (g_settings->existsLocal("disable_anticheat")) {
|
|
if (g_settings->getBool("disable_anticheat")) {
|
|
g_settings->setFlagStr("anticheat_flags", 0, flagdesc_anticheat);
|
|
}
|
|
g_settings->remove("disable_anticheat");
|
|
}
|
|
}
|