Merge pull request #5855 from Novacat/nova-basicfixes

Emergency quick bugfixes
This commit is contained in:
Novacat
2019-09-14 01:48:08 -04:00
committed by GitHub
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -648,7 +648,7 @@
model_text = "Exploration"
departments = list("Exploration","Old Exploration")
/obj/machinery/suit_cycler/exploreration/Initialize()
/obj/machinery/suit_cycler/exploration/Initialize()
species -= SPECIES_TESHARI
return ..()
+4 -2
View File
@@ -27,8 +27,10 @@
return //Don't ghostport, very annoying
if(AM.throwing)
return //Being thrown over, not fallen yet
if(/obj/item/projectile)
return // Bullets/lasers/pewpew should not fall out of the sky. pew.
if(istype(AM, /obj/item/projectile))
return // pewpew should not fall out of the sky. pew.
if(istype(AM, /obj/effect/projectile))
return // ...neither should the effects be falling
var/mob/living/L
if(isliving(AM))