Skip to content

Commit

Permalink
fixio
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsar-Salat committed Aug 10, 2024
1 parent 6d829ae commit 0057823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/_globalvars/traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_NAIVE" = TRAIT_NAIVE,
"TRAIT_DROPS_ITEMS_ON_DEATH" = TRAIT_DROPS_ITEMS_ON_DEATH,
"TRAIT_MOTH_BURNT" = TRAIT_MOTH_BURNT,
"TRAIT_METALANGUAGE_KEY_ALLOWED" = TRAIT_METALANGUAGE_KEY_ALLOWED
"TRAIT_METALANGUAGE_KEY_ALLOWED" = TRAIT_METALANGUAGE_KEY_ALLOWED,
"TRAIT_WEAK_SOUL" = TRAIT_WEAK_SOUL
),
/obj/item/bodypart = list(
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/simple_animal/hostile/mimite.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
icon_state = "mimite"
icon_living = "mimite"
pass_flags = PASSTABLE
ventcrawler = VENTCRAWLER_ALWAYS
a_intent = INTENT_HARM
melee_damage = 10
see_in_dark = 8
Expand Down Expand Up @@ -75,6 +74,7 @@

/mob/living/simple_animal/hostile/mimite/Initialize()
. = ..()
ADD_TRAIT(src, TRAIT_VENTCRAWLER_ALWAYS, INNATE_TRAIT)
AddElement(/datum/element/point_of_interest)
GLOB.all_mimites += src
var/image/I = image(icon = 'icons/mob/hud.dmi', icon_state = "hudcultist", layer = DATA_HUD_PLANE, loc = src)
Expand Down

0 comments on commit 0057823

Please sign in to comment.