From a923feef8807f871f7b9f8ba3eb7899e18769591 Mon Sep 17 00:00:00 2001 From: Mariki <68015763+Mar1ki@users.noreply.github.com> Date: Fri, 14 Mar 2025 17:13:25 +0300 Subject: [PATCH] Added New BattleBus Overrides Added new BattleBus overrides (14.30, 14.50, 14.60) --- Project Reboot 3.0/FortGameModeAthena.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Project Reboot 3.0/FortGameModeAthena.cpp b/Project Reboot 3.0/FortGameModeAthena.cpp index f6ad6f4..42000f9 100644 --- a/Project Reboot 3.0/FortGameModeAthena.cpp +++ b/Project Reboot 3.0/FortGameModeAthena.cpp @@ -1314,6 +1314,18 @@ void AFortGameModeAthena::Athena_HandleStartingNewPlayerHook(AFortGameModeAthena { OverrideBattleBusSkin = FindObject(L"/Game/Athena/Items/Cosmetics/BattleBuses/BBID_WorldCupBus.BBID_WorldCupBus"); // World Cup } + else if (Fortnite_Version == 14.30) + { + OverrideBattleBusSkin = FindObject(L"/Game/Athena/Items/Cosmetics/BattleBuses/BBID_BusUpgrade1.BBID_BusUpgrade1"); + } + else if (Fortnite_Version == 14.50) + { + OverrideBattleBusSkin = FindObject(L"/Game/Athena/Items/Cosmetics/BattleBuses/BBID_BusUpgrade2.BBID_BusUpgrade2"); + } + else if (Fortnite_Version == 14.60) + { + OverrideBattleBusSkin = FindObject(L"/Game/Athena/Items/Cosmetics/BattleBuses/BBID_BusUpgrade3.BBID_BusUpgrade3"); + } if (OverrideBattleBusSkin) OverrideBattleBus(GameState, OverrideBattleBusSkin);