Skip to content

Commit 9121fe2

Browse files
consistency
1 parent a9c81c6 commit 9121fe2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

code/game/machinery/ATMOSPHERICS/pipe/construction.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ var/list/manifold_pipes = list(PIPE_MANIFOLD4W, PIPE_INSUL_MANIFOLD4W, PIPE_HE_M
419419
return 0
420420

421421
/obj/item/pipe/attack_self(mob/user as mob)
422-
return rotate()
422+
return rotate_ccw()
423423

424424
/obj/item/pipe/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob)
425425
..()

code/game/objects/objs.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ var/global/list/reagents_to_always_log = list(AMUTATIONTOXIN, CYANIDE, CHEFSPECI
290290

291291
/obj/AltClick(mob/user)
292292
if(!user.incapacitated() && Adjacent(user) && alt_click_rotates)
293-
rotate()
293+
rotate_ccw()
294294
return ..()
295295

296296
/obj/proc/rotate_cw()

code/modules/spacepods/parts.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
O.playtoolsound(src, 50)
8888

8989
/obj/item/pod_parts/pod_frame/attack_hand()
90-
src.rotate()
90+
rotate_ccw()
9191

9292
/obj/item/pod_parts/pod_frame/fore_port
9393
name = "fore port pod frame"

0 commit comments

Comments
 (0)