mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 04:57:47 +01:00
Merge pull request #5855 from Novacat/nova-basicfixes
Emergency quick bugfixes
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user