mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-28 01:42:50 +00:00
Merge pull request #12671 from Verkister/patch-113
Makes mobs not spawn with id unless defined so
This commit is contained in:
@@ -164,15 +164,17 @@
|
||||
var/limb_icon_key
|
||||
var/understands_common = TRUE //VOREStation Edit - Makes it so that simplemobs can understand galcomm without being able to speak it.
|
||||
var/heal_countdown = 5 //VOREStation Edit - A cooldown ticker for passive healing
|
||||
var/obj/item/weapon/card/id/mobcard = null
|
||||
var/list/mobcard_access = list()
|
||||
var/obj/item/weapon/card/id/mobcard = null //VOREStation Edit
|
||||
var/list/mobcard_access = list() //VOREStation Edit
|
||||
var/mobcard_provided = FALSE //VOREStation Edit
|
||||
|
||||
/mob/living/simple_mob/Initialize()
|
||||
verbs -= /mob/verb/observe
|
||||
health = maxHealth
|
||||
|
||||
mobcard = new /obj/item/weapon/card/id(src)
|
||||
mobcard.access = mobcard_access.Copy()
|
||||
if(mobcard_provided) //VOREStation Edit
|
||||
mobcard = new /obj/item/weapon/card/id(src)
|
||||
mobcard.access = mobcard_access.Copy()
|
||||
|
||||
for(var/L in has_langs)
|
||||
languages |= GLOB.all_languages[L]
|
||||
@@ -311,4 +313,4 @@
|
||||
D.open()
|
||||
else
|
||||
..()
|
||||
//Vorestation Add End
|
||||
//Vorestation Add End
|
||||
|
||||
@@ -44,6 +44,8 @@
|
||||
friendly = list("hugs")
|
||||
see_in_dark = 8
|
||||
|
||||
mobcard_provided = TRUE
|
||||
|
||||
catalogue_data = list(/datum/category_item/catalogue/fauna/catslug)
|
||||
ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/catslug
|
||||
say_list_type = /datum/say_list/catslug
|
||||
|
||||
Reference in New Issue
Block a user