Use core.global_exists method to check for globals

This commit is contained in:
Jordan Irwin 2019-03-03 21:37:02 -08:00
parent c30697805b
commit b0ebd689eb
1 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,7 @@ minetest.register_entity("hangglider:airstopper", { --A one-instant entity that
end
})]]
if areas then
if core.global_exists("areas") then
hangglider.flak = true
-- chat command definition essentially copied from areas mod.
minetest.register_chatcommand("area_flak",{
@ -124,7 +124,7 @@ if areas then
})
end
if minetestd and minetestd.services.physicsctl.enabled then
if core.global_exists("minetestd") and minetestd.services.physicsctl.enabled then
minetestd.physicsctl.register_physics_effect("hangglider",
function(player) -- check
return hangglider.use[player:get_player_name()]
@ -188,7 +188,7 @@ end
local function remove_physics_override(player, overrides)
for _, attr in pairs(physics_attrs) do
if overrides[attr] then
if player_monoids then
if core.global_exists("player_monoids") then
player_monoids[attr]:del_change(player, "hangglider:glider")
else
player:set_physics_override({[attr] = 1})