Deduplicate shield slowdown removal code

This commit is contained in:
Elias Åström 2024-02-26 20:09:41 +01:00 committed by the-real-herowl
parent d0d1217dec
commit 45ae170447
1 changed files with 1 additions and 2 deletions

View File

@ -240,6 +240,7 @@ local shield_hud = {}
local function remove_shield_hud(player)
set_interact(player, true)
playerphysics.remove_physics_factor(player, "speed", "shield_speed")
if not shield_hud[player] then return end --this function takes a long time. only run it when necessary
player:hud_remove(shield_hud[player])
@ -251,8 +252,6 @@ local function remove_shield_hud(player)
if not hf.wielditem then
player:hud_set_flags({wielditem = true})
end
playerphysics.remove_physics_factor(player, "speed", "shield_speed")
end
local function add_shield_entity(player, i)