summaryrefslogtreecommitdiff
path: root/src/map/chrif.cpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-04-17 13:22:58 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-04-27 14:09:22 -0700
commitd18f5bdb682a1d9c6e3a191926bfd46d36e813c1 (patch)
treec987d53ea924b761e5445572a438e0c4bc825d48 /src/map/chrif.cpp
parentda6b990ca1f553a017003f32a436304c66c62b9e (diff)
downloadtmwa-d18f5bdb682a1d9c6e3a191926bfd46d36e813c1.tar.gz
tmwa-d18f5bdb682a1d9c6e3a191926bfd46d36e813c1.tar.bz2
tmwa-d18f5bdb682a1d9c6e3a191926bfd46d36e813c1.tar.xz
tmwa-d18f5bdb682a1d9c6e3a191926bfd46d36e813c1.zip
Force timers to be managed
Diffstat (limited to 'src/map/chrif.cpp')
-rw-r--r--src/map/chrif.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/map/chrif.cpp b/src/map/chrif.cpp
index 47eef1a..8926780 100644
--- a/src/map/chrif.cpp
+++ b/src/map/chrif.cpp
@@ -1211,10 +1211,14 @@ void check_connect_char_server(TimerData *, tick_t)
*/
int do_init_chrif (void)
{
- add_timer_interval(gettick() + std::chrono::seconds(1),
+ Timer(gettick() + std::chrono::seconds(1),
check_connect_char_server,
- std::chrono::seconds(10));
- add_timer_interval(gettick() + std::chrono::seconds(1), send_users_tochar, std::chrono::seconds(5));
+ std::chrono::seconds(10)
+ ).detach();
+ Timer(gettick() + std::chrono::seconds(1),
+ send_users_tochar,
+ std::chrono::seconds(5)
+ ).detach();
return 0;
}