[MIRROR] Makes flick_overlay use client time (#5312)

* Makes flick_overlay use client time (#35271)

* Makes flick_overlay use client time
This commit is contained in:
CitadelStationBot
2018-02-05 00:48:30 -06:00
committed by Poojawa
parent a5d1cae1ac
commit e45aa5aa68
+1 -1
View File
@@ -355,7 +355,7 @@
/proc/flick_overlay(image/I, list/show_to, duration)
for(var/client/C in show_to)
C.images += I
addtimer(CALLBACK(GLOBAL_PROC, /.proc/remove_images_from_clients, I, show_to), duration)
addtimer(CALLBACK(GLOBAL_PROC, /.proc/remove_images_from_clients, I, show_to), duration, TIMER_CLIENT_TIME)
/proc/flick_overlay_view(image/I, atom/target, duration) //wrapper for the above, flicks to everyone who can see the target atom
var/list/viewing = list()