Skip to content

Commit a9c81c6

Browse files
compilation
1 parent e39881f commit a9c81c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

code/game/objects/objs.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ var/global/list/reagents_to_always_log = list(AMUTATIONTOXIN, CYANIDE, CHEFSPECI
321321
if(T)
322322
for(var/obj/O in T)
323323
var/rotated_type = rotate_type || src.type
324-
if(istype(O,src.type) && !O.anchored && O.dir == src.dir)
324+
if(istype(O,rotated_type) && !O.anchored && O.dir == src.dir)
325325
O.rotate(angle)
326326
return
327327
to_chat(usr, "<span class='warning'>\The [src] is fastened to the floor, therefore you can't rotate it!</span>")

code/game/objects/structures/stool_bed_chair_nest/chairs.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -715,8 +715,8 @@
715715
can_rotate = TRUE
716716
ghost_can_rotate = TRUE
717717

718-
/obj/structure/bed/chair/shuttle/gamer/spin(var/mob/M)
719-
change_dir(turn(dir, 90))
718+
/obj/structure/bed/chair/shuttle/gamer/rotate(angle)
719+
change_dir(turn(dir, angle))
720720

721721
//Plastic chairs
722722
/obj/structure/bed/chair/plastic

0 commit comments

Comments
 (0)