Fix prayer breads (#23056)

This commit is contained in:
Farie82
2023-10-30 20:03:47 +01:00
committed by GitHub
parent a7568f73b4
commit 2d23ee4aaa
2 changed files with 39 additions and 11 deletions

View File

@@ -8,7 +8,12 @@
if(!istype(A) && !isclient(A))
return
A.color = null
animate(A, color = MATRIX_GREYSCALE, time = time, easing = SINE_EASING)
animate(A, color = MATRIX_GREYSCALE, time = time, easing = SINE_EASING, flags = ANIMATION_PARALLEL)
/proc/animate_fade_colored(atom/A, time = 5)
if(!istype(A) && !isclient(A))
return
animate(A, color = null, time = time, easing = SINE_EASING, flags = ANIMATION_PARALLEL)
/proc/animate_melt_pixel(atom/A)
if(!istype(A))