mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-16 14:25:19 -05:00
Extend minetest.is_yes()
This commit is contained in:
parent
b387f95ed3
commit
c435eabf3f
@ -147,6 +147,8 @@ void TestUtilities::testIsYes()
|
|||||||
UASSERT(is_yes("0") == false);
|
UASSERT(is_yes("0") == false);
|
||||||
UASSERT(is_yes("1") == true);
|
UASSERT(is_yes("1") == true);
|
||||||
UASSERT(is_yes("2") == true);
|
UASSERT(is_yes("2") == true);
|
||||||
|
UASSERT(is_yes("on") == true);
|
||||||
|
UASSERT(is_yes("off") == false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -272,7 +272,7 @@ inline bool is_yes(const std::string &str)
|
|||||||
{
|
{
|
||||||
std::string s2 = lowercase(trim(str));
|
std::string s2 = lowercase(trim(str));
|
||||||
|
|
||||||
return s2 == "y" || s2 == "yes" || s2 == "true" || atoi(s2.c_str()) != 0;
|
return s2 == "y" || s2 == "yes" || s2 == "true" || s2 == "on" || atoi(s2.c_str()) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user