forked from thunderdog1138/star_wars
bug fix
This commit is contained in:
parent
5c57c5d8a8
commit
aaafc54e9d
|
@ -273,6 +273,11 @@ armor.set_player_armor = function(self, player)
|
|||
if use_armor_monoid then
|
||||
armor_monoid.monoid:add_change(player, change, "3d_armor:armor")
|
||||
else
|
||||
-- Preserve immortal group (damage disabled for player)
|
||||
local immortal = player:get_armor_groups().immortal
|
||||
if immortal and immortal ~= 0 then
|
||||
groups.immortal = 1
|
||||
end
|
||||
player:set_armor_groups(groups)
|
||||
end
|
||||
if use_player_monoids then
|
||||
|
|
Loading…
Reference in New Issue