hello, in our game players do some actions, and these action have cooldowns.
This night i think US or CANADA (where the server is located) switched to daylight saving time, resulting in all the cooldowns increased by 1 hour;
For example, i have the following code:
$action_start_time = time();
$action_end_time = $action_start_time + 3600;
Normally an action started at 01:00, will finish at 02:00, but today it finshed at 03:00
Anyone knows how to fix this problem?
Thanks