You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/modules/clothing/accessories/accessory.dm
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -209,13 +209,12 @@
209
209
user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [M]'s [body_part]. You [sound_strength][sound].")
210
210
211
211
spawn()
212
-
if(!listening)
213
-
while(M.pulse !=PULSE_NONE&& loc == user && M.Adjacent(user) &&!M.timestopped)
214
-
listening =TRUE
215
-
var/pulsespeed= M.get_pulsespeed()
216
-
if(pulsespeed)
217
-
to_chat(M,"*thump*")
218
-
sleep(max(1,pulsespeed))
212
+
while(!listening && M.pulse !=PULSE_NONE&& loc == user && M.Adjacent(user) &&!M.timestopped)
0 commit comments