Skip to content

Commit

Permalink
don't need this
Browse files Browse the repository at this point in the history
  • Loading branch information
SECBATON-GRIFFON committed Jan 1, 2025
1 parent 76ad6d7 commit e2a25c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/game/mecha/equipment/tools/tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1692,12 +1692,12 @@
if(do_after_cooldown(target))
if(chassis.loc!=C || target.loc!=T)
animate(chassis, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1)
return
if(occupant)
occupant_message("<span class='warning'>The ship is already occupied!</span>")
animate(chassis, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1)
return
target.forceMove(src)
target.reset_view(src)
Expand All @@ -1709,11 +1709,11 @@
chassis.visible_message("[chassis] loads [target] into [src].")
log_message("[target] loaded.")
animate(chassis, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1)
return 1
animate(chassis, pixel_y = 0, time = 1, easing = SINE_EASING)
if(target)
animate(target, pixel_y = 0, time = 1, easing = SINE_EASING)
animate(target, pixel_y = 0, time = 1)
return

/obj/item/mecha_parts/mecha_equipment/tool/ayy/abductor/get_equip_info()
Expand Down

0 comments on commit e2a25c5

Please sign in to comment.