Fixes Global and Fixes Eyes (#7976)

* Fixes Custom Species Global lists

Basically changing it to a GLOB just had it add all the species into one global variable instead of a proper list.

* Update global_lists.dm

* Fixes Eyes Stuff

* Removes extraneous Vorestation Edits

* Fixes compile issue
This commit is contained in:
Novacat
2021-03-18 04:50:37 -04:00
committed by GitHub
parent 81ae48ba93
commit e4962d9f9f
6 changed files with 46 additions and 91 deletions

View File

@@ -46,7 +46,7 @@
starts_with = null
if(!opened) // if closed, any item at the crate's loc is put in the contents
if(istype(loc, /mob/living)) return //VOREStation Edit - No collecting mob organs if spawned inside mob
if(istype(loc, /mob/living)) return
var/obj/item/I
for(I in loc)
if(I.density || I.anchored || I == src) continue