[helicopter] Update to Git patch 9ffee1f:

https://github.com/AntumMT/mod-helicopter/tree/9ffee1f
master
AntumDeluge 2017-07-06 21:18:43 -07:00
parent 14eafa21be
commit b1af673ea5
2 changed files with 6 additions and 2 deletions

View File

@ -545,7 +545,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[patch.gems_encrustable]: https://github.com/AntumMT/mtmod-gems_encrustable/tree/791bff5
[patch.gems_tools]: https://github.com/AntumMT/mtmod-gems_tools/tree/abe21e3
[patch.hbarmor]: https://github.com/AntumMT/mtmod-hbarmor/tree/d1168bb
[patch.helicopter]: https://github.com/AntumMT/mtmod-helicopter/tree/4402412
[patch.helicopter]: https://github.com/AntumMT/mod-helicopter/tree/9ffee1f
[patch.homedecor]: https://github.com/AntumMT/mtmp-homedecor/tree/d0d79dc
[patch.hovercraft]: https://github.com/AntumMT/mtmod-hovercraft/tree/73a6223
[patch.hud]: https://github.com/AntumMT/mtmod-hud/tree/6846e20

View File

@ -5,7 +5,11 @@ dofancy = false
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if minetest.global_exists('intllib') then
S = intllib.Getter()
if intllib.make_gettext_pair then
S = intllib.make_gettext_pair()
else
S = intllib.Getter()
end
else
S = function(s) return s end
end