mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +00:00
Tweaks to zone shutdown code
This commit is contained in:
+2
-3
@@ -131,12 +131,11 @@ void Timer::SetTimer(uint32 set_timer_time) {
|
||||
|
||||
uint32 Timer::GetRemainingTime() {
|
||||
if (enabled) {
|
||||
if (current_time-start_time > timer_time)
|
||||
if (current_time - start_time > timer_time)
|
||||
return 0;
|
||||
else
|
||||
return (start_time + timer_time) - current_time;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return 0xFFFFFFFF;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user