mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 17:14:47 +01:00
Fixes null thrower runtime with plant backfire element (#70540)
Fixes null thrower runtime
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
SIGNAL_HANDLER
|
||||
|
||||
var/mob/living/thrower = arguments[4] // the 4th arg = the mob throwing our item
|
||||
if(!thrower.is_holding(source))
|
||||
if(!istype(thrower) || !thrower.is_holding(source))
|
||||
return
|
||||
if(!backfire(source, thrower))
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user