From 6afc080d50d652c8e0118168730e70aeef83e636 Mon Sep 17 00:00:00 2001 From: Yimura Date: Sat, 26 Dec 2020 17:34:00 +0100 Subject: [PATCH] fix(Temp): Fixed temporary game_time struct where time would be an invalid prop --- BigBaseV2/src/structs/temp.hpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/BigBaseV2/src/structs/temp.hpp b/BigBaseV2/src/structs/temp.hpp index 321b4a9d..92332e4c 100644 --- a/BigBaseV2/src/structs/temp.hpp +++ b/BigBaseV2/src/structs/temp.hpp @@ -2,14 +2,16 @@ namespace big { + struct game_time + { + int hour = 0; + int minutes = 0; + }; + struct temp { - struct game_time - { - int hour = 0; - int minutes = 0; - }; int spoofed_rank = 0; + game_time time = game_time{}; int wanted_level = 0; }; } \ No newline at end of file