Fixes bad loop in turf entered proc

It was checking THE WHOLE AREA for chairs. With EVERY STEP!
This commit is contained in:
Krausus
2015-05-16 23:35:44 -04:00
parent 23a510b743
commit c14c69af02
+1 -1
View File
@@ -105,7 +105,7 @@
bloodDNA = null
var/noslip = 0
for (var/obj/structure/stool/bed/chair/C in loc)
for (var/obj/structure/stool/bed/chair/C in contents)
if (C.buckled_mob == M)
noslip = 1
if (noslip)