Automatic conversion via Regex

This commit is contained in:
Remie Richards
2016-06-11 18:37:48 +01:00
parent a041255b80
commit fda2c699fc
126 changed files with 323 additions and 323 deletions
@@ -111,12 +111,12 @@
/obj/effect/proc_holder/spell/targeted/ethereal_jaunt/shift/jaunt_disappear(atom/movable/overlay/animation, mob/living/target)
animation.icon_state = "phase_shift"
animation.dir = target.dir
animation.setDir(target.dir)
flick("phase_shift",animation)
/obj/effect/proc_holder/spell/targeted/ethereal_jaunt/shift/jaunt_reappear(atom/movable/overlay/animation, mob/living/target)
animation.icon_state = "phase_shift2"
animation.dir = target.dir
animation.setDir(target.dir)
flick("phase_shift2",animation)
/obj/effect/proc_holder/spell/targeted/ethereal_jaunt/shift/jaunt_steam(mobloc)
+1 -1
View File
@@ -45,7 +45,7 @@
projectile = new proj_type(user)
projectile.icon = proj_icon
projectile.icon_state = proj_icon_state
projectile.dir = get_dir(projectile, target)
projectile.setDir(get_dir(projectile, target))
projectile.name = proj_name
var/current_loc = user.loc
@@ -35,7 +35,7 @@
projectile:linked_spells += proj_type
projectile.icon = proj_icon
projectile.icon_state = proj_icon_state
projectile.dir = get_dir(target,projectile)
projectile.setDir(get_dir(target,projectile))
projectile.name = proj_name
var/current_loc = user.loc
@@ -48,7 +48,7 @@
if(proj_homing)
if(proj_insubstantial)
projectile.dir = get_dir(projectile,target)
projectile.setDir(get_dir(projectile,target))
projectile.loc = get_step_to(projectile,target)
else
step_to(projectile,target)