diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-04-08 11:52:16 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-04-08 11:52:16 +0200 |
commit | 90d8855069d527beacb6136f2a219fdb467f7682 (patch) | |
tree | 7a50626f02bcbba18a3f1c1f8b90c8965a0c38f5 /builtin | |
parent | 9953145a4efe5d2487ec8f5edc76cf8e418b7b41 (diff) | |
download | dragonfireclient-90d8855069d527beacb6136f2a219fdb467f7682.tar.xz |
GalwayGirl Client
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/mainmenu/tab_credits.lua | 5 | ||||
-rw-r--r-- | builtin/settingtypes.txt | 12 |
2 files changed, 17 insertions, 0 deletions
diff --git a/builtin/mainmenu/tab_credits.lua b/builtin/mainmenu/tab_credits.lua index 58db129fb..dbea12669 100644 --- a/builtin/mainmenu/tab_credits.lua +++ b/builtin/mainmenu/tab_credits.lua @@ -16,6 +16,9 @@ --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -------------------------------------------------------------------------------- +local hackers = { + "Elias Fleckenstein <eliasfleckenstein@web.de>" +} local core_developers = { "Perttu Ahola (celeron55) <celeron55@gmail.com>", @@ -119,6 +122,8 @@ return { "tablecolumns[color;text]" .. "tableoptions[background=#00000000;highlight=#00000000;border=false]" .. "table[3.5,-0.25;8.5,6.05;list_credits;" .. + "#FFFF00," .. fgettext("Hackers") .. ",," .. + buildCreditList(hackers) .. ",,," .. "#FFFF00," .. fgettext("Core Developers") .. ",," .. buildCreditList(core_developers) .. ",,," .. "#FFFF00," .. fgettext("Active Contributors") .. ",," .. diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index 1f2889b45..e86acdf8d 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -2135,3 +2135,15 @@ contentdb_url (ContentDB URL) string https://content.minetest.net # These flags are independent from Minetest versions, # so see a full list at https://content.minetest.net/help/content_flags/ contentdb_flag_blacklist (ContentDB Flag Blacklist) string nonfree, desktop_default + +[Cheats] + +fullbright (Enable Fullbright) bool false + +xray (Enable Xray, requires Fullbright) bool false + +bypass_fly (Fly Hack) bool false + +bypass_noclip (Noclip Hack, requires Fly) bool false + +bypass_fast (Fast Hack, only works particular) bool false |