We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6051e32 commit 1144461Copy full SHA for 1144461
code/modules/sanity/breakdowns.dm
@@ -201,7 +201,7 @@
201
202
/datum/breakdown/negative/selfharm/occur()
203
spawn(delay)
204
- ++holder.owner.suppress_communication
+ ++holder?.owner.suppress_communication
205
return ..()
206
207
/datum/breakdown/negative/selfharm/conclude()
@@ -240,9 +240,9 @@
240
241
/datum/breakdown/negative/hysteric/occur()
242
243
- holder.owner.SetWeakened(4)
244
- holder.owner.SetStunned(4)
245
+ holder?.owner.SetWeakened(4)
+ holder?.owner.SetStunned(4)
246
247
248
/datum/breakdown/negative/hysteric/conclude()
0 commit comments