fix some fortnite versions late

This commit is contained in:
Gray
2025-08-01 10:58:41 -04:00
parent c072b7fb2f
commit 532a0f85d6
9 changed files with 16 additions and 8 deletions

View File

@@ -373,7 +373,9 @@ std::vector<LootDrop> PickLootDrops(FName TierGroupName, int WorldLevel, int For
{
std::vector<LootDrop> LootDrops;
if (!TierGroupName.IsValid() || recursive > 6)
if (!TierGroupName.IsValid()
|| Fortnite_Version >= 23 // RANDOMC RASH BRO???
|| recursive > 6)
return LootDrops;
auto GameState = ((AFortGameModeAthena*)GetWorld()->GetGameMode())->GetGameStateAthena();