Change log level of a parachute msg

master
Wuzzy 2022-08-07 09:32:12 +02:00
parent e890682d72
commit 359dc97d43
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ minetest.register_on_joinplayer(function(player)
local pos = player:get_pos()
local ok, fail_reason = open_parachute_for_player(player, false, true)
if not ok then
minetest.log("error", "[parachute] Parachute opening failed because: "..fail_reason)
minetest.log("action", "[parachute] Parachute opening failed because: "..fail_reason)
end
end
end)