Change: [Script] Use economy time for ScriptDate

This commit is contained in:
glx22
2024-03-23 18:06:22 +01:00
committed by Loïc Guilloux
parent 704e871a0e
commit 02c00f3e3e
2 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
#define SCRIPT_DATE_HPP
#include "script_object.hpp"
#include "../../timer/timer_game_calendar.h"
#include "../../timer/timer_game_economy.h"
/**
* Class that handles all date related (calculation) functions.
@@ -31,7 +31,7 @@ public:
* compose valid date values for a known year, month and day.
*/
enum Date {
DATE_INVALID = ::CalendarTime::INVALID_DATE.base(), ///< A value representing an invalid date.
DATE_INVALID = ::EconomyTime::INVALID_DATE.base(), ///< A value representing an invalid date.
};
/**