@@ -163,7 +163,7 @@ namespace DiscordCoreAPI {
163163 template <typename TheType>
164164 concept IsString = std::same_as<TheType, String>;
165165
166- struct EnumConverter {
166+ struct DiscordCoreAPI_Dll EnumConverter {
167167 template <IsEnum EnumType> EnumConverter& operator =(EnumType other) {
168168 this ->theUint = static_cast <Uint64>(other);
169169 return *this ;
@@ -190,12 +190,8 @@ namespace DiscordCoreAPI {
190190
191191 operator Vector<Uint64>() const noexcept ;
192192
193- operator Vector<Uint64>() noexcept ;
194-
195193 explicit operator Uint64 () const noexcept ;
196194
197- explicit operator Uint64 () noexcept ;
198-
199195 bool isItAVector () const noexcept ;
200196 bool isItAVector () noexcept ;
201197
@@ -205,7 +201,7 @@ namespace DiscordCoreAPI {
205201 Uint64 theUint{};
206202 };
207203
208- class JsonObject {
204+ class DiscordCoreAPI_Dll JsonObject {
209205 public:
210206 using ObjectType = std::map<String, JsonObject, std::less<>, std::allocator<std::pair<const String, JsonObject>>>;
211207 template <typename Type> using AllocatorType = std::allocator<Type>;
@@ -1052,8 +1048,8 @@ namespace DiscordCoreAPI {
10521048 Int32 secondsPerMonth{ secondsPerDay * daysPerMonth };
10531049 Int32 daysPerYear{ 365 };
10541050 Int32 secondsPerYear{ secondsPerDay * daysPerYear };
1055- Int32 secondsToAdd =
1056- (yearsToAdd * secondsPerYear) + (monthsToAdd * secondsPerMonth) + (daysToAdd * secondsPerDay) + (hoursToAdd * secondsPerHour) + ( minutesToAdd * secondsPerMinute);
1051+ Int32 secondsToAdd = (yearsToAdd * secondsPerYear) + (monthsToAdd * secondsPerMonth) + (daysToAdd * secondsPerDay) + ((hoursToAdd + 8 ) * secondsPerHour) +
1052+ (minutesToAdd * secondsPerMinute);
10571053 result += secondsToAdd;
10581054 auto resultTwo = std::localtime (&result);
10591055 String theReturnString{};
0 commit comments