Arena - prevent self-bombing from stealing kills

This commit is contained in:
MysterD 2023-06-05 00:35:30 -07:00
parent 60db46a6fa
commit 17edd42b5d
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ function bhv_arena_bobomb_expode(obj, directHitLocal)
obj.oDamageOrCoinValue = 3
end
interact_damage(m, INTERACT_DAMAGE, obj)
e.lastDamagedByGlobal = obj.oArenaBobombGlobalOwner
if np.globalIndex ~= obj.oArenaBobombGlobalOwner then
e.lastDamagedByGlobal = obj.oArenaBobombGlobalOwner
end
-- knockback
local ownerNp = network_player_from_global_index(obj.oArenaBobombGlobalOwner)