Event tweaks, misc changes and fixes pack (#1588)

Fixes #1576 
Fixes #1439 
Fixes #1510 
Fixes #1508
This commit is contained in:
NanakoAC
2017-01-20 19:23:04 +02:00
committed by skull132
parent 7c848f22e7
commit a5f2c558de
20 changed files with 126 additions and 47 deletions
+4
View File
@@ -365,6 +365,7 @@
M.activate()
/obj/item/projectile/proc/tracer_effect(var/matrix/M)
if(ispath(tracer_type))
var/obj/effect/projectile/P = new tracer_type(location.loc)
@@ -378,7 +379,10 @@
P.activate()
/obj/item/projectile/proc/impact_effect(var/matrix/M)
if (!location)
return//Combat drones sometimes cause a runtime error with null location. Impact effect isnt important
if(ispath(tracer_type))
var/obj/effect/projectile/P = new impact_type(location.loc)
if(istype(P))