Players Eliminated by Kinetic Blade Do not proc FortCharacter.EliminatedEvent on next Elimination

Summary

In verse if you subscribe to a FortCharacter’s EliminatedEvent, you will get events when that FortCharacter is eliminated.

When Player A gets eliminated by Player B using the Kinetic Blade, it causes the next EliminationEvent against Player B, caused by Player A to not fire.

The DamagedEvent DOES still fire in this condition.

Minimum Repro Island code: 2940-6398-9072

Verse ref:

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /Fortnite.com/Game }
using { /Fortnite.com/Characters }

debug_manager := class(creative_device):
@editable Spawners: player_spawner_device = array{}
@editable DebugHUD: hud_message_device = hud_message_device{}

var GamePlayers: [player]logic = map{}

OnBegin<override>()<suspends>:void=
    for(Spawner:Spawners):
        Spawner.SpawnedEvent.Subscribe(OnPlayerSpawned)
    
OnPlayerSpawned(Agent:agent):void=
    if(Player:=player[Agent], not GamePlayers[Player], set GamePlayers[Player] = true, FortChar:=Player.GetFortCharacter[]):
        Print("player joined")
        FortChar.EliminatedEvent().Subscribe(OnPlayerEliminated)

OnPlayerEliminated(ElimResult:elimination_result):void=
    Print("player eliminated")
    DebugHUD.Show()

Please select what you are reporting on:

Creative

What Type of Bug are you experiencing?

Verse

Steps to Reproduce

  1. Load into provided island code (2940-6398-9072) with 2 players (Players A and B)
  2. Pickup assault rifle with Player A
  3. As Player A, elim Player B with AR, observe debug HUD
  4. Pickup kinetic blade with Player A
  5. As Player A, elim Player B with Kinetic Blade, observe debug HUD
  6. As Player B, elim Player A. observe no debug HUD

Expected Result

EliminatedEvent on FortCharacter always fires when FortCharacter is eliminated

Observed Result

EliminatedEvent on FortCharacter does not fire after being eliminated by Kinetic Blade, on the player that eliminated them

Platform(s)

ALL

Island Code

2940-6398-9072

@OohWowow This is most likely the same issue as the one here Kinetic Blade right click breaks EliminatedEvent - #16 by im_a_lama

How’s that still a thing ? :smiling_face_with_tear:

1 Like

I reported this maybe 4 months ago too

I dnt work for epic but idk how its difficult to fix something like this

FORT-876965 has been ‘Closed’ as a duplicate of an existing known issue.

1 Like