mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
Fixed Devourer of Worlds Event, Fixed chapter 2+ editing bug, Fixed all other bugs with editing, Fixed S13+ lategame.
12 lines
401 B
C++
12 lines
401 B
C++
#include "FortSafeZoneIndicator.h"
|
|
|
|
#include "FortGameModeAthena.h"
|
|
#include "reboot.h"
|
|
|
|
void AFortSafeZoneIndicator::SkipShrinkSafeZone()
|
|
{
|
|
auto GameState = Cast<AFortGameStateAthena>(((AFortGameMode*)GetWorld()->GetGameMode())->GetGameState());
|
|
|
|
GetSafeZoneStartShrinkTime() = GameState->GetServerWorldTimeSeconds();
|
|
GetSafeZoneFinishShrinkTime() = GameState->GetServerWorldTimeSeconds() + 0.2;
|
|
} |