fix editing s8-s10

This commit is contained in:
Gray
2025-07-15 21:33:57 -04:00
parent 131e494cef
commit 51d4ec80ea
4 changed files with 13 additions and 5 deletions

View File

@@ -83,7 +83,7 @@ static inline UFortAbilitySet* GetPlayerAbilitySet()
{
// There are some variables that contain this but it changes through versions soo..
static auto GameplayAbilitySet = (Fortnite_Version >= 8.30 ? LoadObject<UFortAbilitySet>(L"/Game/Abilities/Player/Generic/Traits/DefaultPlayer/GAS_AthenaPlayer.GAS_AthenaPlayer")
static auto GameplayAbilitySet = (Fortnite_Version > 8.30 ? LoadObject<UFortAbilitySet>(L"/Game/Abilities/Player/Generic/Traits/DefaultPlayer/GAS_AthenaPlayer.GAS_AthenaPlayer")
: LoadObject<UFortAbilitySet>(L"/Game/Abilities/Player/Generic/Traits/DefaultPlayer/GAS_DefaultPlayer.GAS_DefaultPlayer"));
return GameplayAbilitySet;