From 95c420ccba09a00b6b621647c64063906ae0a8bc Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 29 Dec 2020 15:55:14 -0700 Subject: [PATCH] Update twitch_plays.dm --- code/datums/components/twitch_plays.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/twitch_plays.dm b/code/datums/components/twitch_plays.dm index 21521477cf..b69764a658 100644 --- a/code/datums/components/twitch_plays.dm +++ b/code/datums/components/twitch_plays.dm @@ -7,7 +7,7 @@ /datum/component/twitch_plays/Initialize(...) . = ..() - if(!isatom(parent)) + if(!ismovable(parent)) return COMPONENT_INCOMPATIBLE RegisterSignal(parent, COMSIG_ATOM_ORBIT_BEGIN, .proc/on_start_orbit) RegisterSignal(parent, COMSIG_ATOM_ORBIT_END, .proc/on_end_orbit)