Update SDQL_2_wrappers.dm

This commit is contained in:
LetterJay
2017-11-02 02:22:32 -05:00
committed by GitHub
parent 24eece99a5
commit 196fb5f345

View File

@@ -3,17 +3,11 @@
/proc/_abs(A)
return abs(A)
<<<<<<< HEAD
/*/proc/_animate(atom/A, set_vars, time = 10, loop = 1, easing = LINEAR_EASING, flags_1 = null)
animate(A, set_vars, time, loop, easing, flags_1)
Borked. If anyone wants to fix this be my guest.*/
=======
/proc/_animate(atom/A, set_vars, time = 10, loop = 1, easing = LINEAR_EASING, flags = null)
var/mutable_appearance/MA = new()
for(var/v in set_vars)
MA.vars[v] = set_vars[v]
animate(A, appearance = MA, time, loop, easing, flags)
>>>>>>> 517a747... Merge pull request #32292 from RemieRichards/patch-5
/proc/_acrccos(A)
return arccos(A)