diff --git a/code/datums/components/twitch_plays.dm b/code/datums/components/twitch_plays.dm index dc753c2fd6..7cc3226bd3 100644 --- a/code/datums/components/twitch_plays.dm +++ b/code/datums/components/twitch_plays.dm @@ -64,7 +64,7 @@ votes[source] = prob(50)? (dir & ~(dir - 1)) : (dir & (dir - 1)) /datum/component/twitch_plays/simple_movement/proc/fetch_data(datum/source, wipe_votes) - if(votes.len) + if(!votes.len) return var/list/total = list(TEXT_NORTH, TEXT_SOUTH, TEXT_EAST, TEXT_WEST) for(var/i in votes) diff --git a/code/modules/vehicles/cars/clowncar.dm b/code/modules/vehicles/cars/clowncar.dm index db295ffd12..698c3bf904 100644 --- a/code/modules/vehicles/cars/clowncar.dm +++ b/code/modules/vehicles/cars/clowncar.dm @@ -137,6 +137,9 @@ /obj/vehicle/sealed/car/clowncar/proc/StopDroppingOil() droppingoil = FALSE +/obj/vehicle/sealed/car/clowncar/twitch_plays + key_type = null + /obj/vehicle/sealed/car/clowncar/twitch_plays/Initialize() . = ..() AddComponent(/datum/component/twitch_plays/simple_movement)