diff options
author | red-001 <red-001@outlook.ie> | 2016-12-03 11:38:07 +0000 |
---|---|---|
committer | Ner'zhul <nerzhul@users.noreply.github.com> | 2017-01-07 09:54:51 +0100 |
commit | c435eabf3ffb77eab955d5faeb5450da1befc149 (patch) | |
tree | c2f2d834abcb58fdecbc34f2379e52f7b8c604a5 /src/util | |
parent | b387f95ed31e9d1dc61ffd10f19187349705d6c9 (diff) | |
download | minetest-c435eabf3ffb77eab955d5faeb5450da1befc149.tar.gz minetest-c435eabf3ffb77eab955d5faeb5450da1befc149.tar.bz2 minetest-c435eabf3ffb77eab955d5faeb5450da1befc149.zip |
Extend minetest.is_yes()
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/string.h b/src/util/string.h index 572c37150..ba3c09e51 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -272,7 +272,7 @@ inline bool is_yes(const std::string &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; } |