diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2022-08-02 21:34:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 21:34:17 +0200 |
commit | a81259d19a434752614e5a430fdebf86f07c1cfc (patch) | |
tree | fcb83c0aa14c645c0050d683b54131bc598556f3 /src/gui | |
parent | f22d40975e907d9f0e84b67b21256953333a6cc8 (diff) | |
download | minetest-a81259d19a434752614e5a430fdebf86f07c1cfc.tar.gz minetest-a81259d19a434752614e5a430fdebf86f07c1cfc.tar.bz2 minetest-a81259d19a434752614e5a430fdebf86f07c1cfc.zip |
Run Minetest update checker on startup (#7629)
This feature is enabled by default for non-Android release builds. Package
maintainers may use -DENABLE_UPDATE_CHECKER=0 to disable it.
Co-authored-by: rubenwardy <rw@rubenwardy.com>
Co-authored-by: sfan5 <sfan5@live.de>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/guiFormSpecMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/guiFormSpecMenu.cpp b/src/gui/guiFormSpecMenu.cpp index 5d4ca6747..1f9914e72 100644 --- a/src/gui/guiFormSpecMenu.cpp +++ b/src/gui/guiFormSpecMenu.cpp @@ -1686,7 +1686,7 @@ void GUIFormSpecMenu::parseField(parserData* data, const std::string &element, void GUIFormSpecMenu::parseHyperText(parserData *data, const std::string &element) { - MY_CHECKCLIENT("list"); + MY_CHECKCLIENT("hypertext"); std::vector<std::string> parts; if (!precheckElement("hypertext", element, 4, 4, parts)) |