diff options
author | PilzAdam <pilzadam@minetest.net> | 2013-06-19 14:30:22 +0000 |
---|---|---|
committer | PilzAdam <pilzadam@minetest.net> | 2013-06-19 15:47:00 +0000 |
commit | 53066024f6a91d5f83241b379b94d8557d43a646 (patch) | |
tree | c785c98f2cc0b45a2430e0e6a374676cd0a175c4 /src/script/lua_api | |
parent | e65ac4d626f69656c57c07e4df1a1113a014f34a (diff) | |
download | minetest-53066024f6a91d5f83241b379b94d8557d43a646.tar.gz minetest-53066024f6a91d5f83241b379b94d8557d43a646.tar.bz2 minetest-53066024f6a91d5f83241b379b94d8557d43a646.zip |
Add drowning
Diffstat (limited to 'src/script/lua_api')
-rw-r--r-- | src/script/lua_api/l_object.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp index 1e45610a6..f90b59285 100644 --- a/src/script/lua_api/l_object.cpp +++ b/src/script/lua_api/l_object.cpp @@ -62,6 +62,7 @@ struct EnumString es_HudBuiltinElement[] = {HUD_FLAG_HEALTHBAR_VISIBLE, "healthbar"}, {HUD_FLAG_CROSSHAIR_VISIBLE, "crosshair"}, {HUD_FLAG_WIELDITEM_VISIBLE, "wielditem"}, + {HUD_FLAG_BREATHBAR_VISIBLE, "breathbar"}, {0, NULL}, }; |