Skip to content

Commit

Permalink
Fixes memories temperance check (#2378)
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
Gboster-0 authored Aug 10, 2024
1 parent b63ba72 commit a723658
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@

// Those with low temperance will find a memory in the pile.
/mob/living/simple_animal/hostile/abnormality/better_memories/PostWorkEffect(mob/living/carbon/human/user, work_type, pe, work_time)
if(get_attribute_level(user, TEMPERANCE_ATTRIBUTE) <= 60)
if(get_attribute_level(user, TEMPERANCE_ATTRIBUTE) < 60)
datum_reference.qliphoth_change(-1)
user.apply_status_effect(MEMORY_DEBUFF)
return

// Better memories can have 3 seperate minions who will terroize the facility. Code modified from luna.dm
/mob/living/simple_animal/hostile/abnormality/better_memories/ZeroQliphoth(mob/living/carbon/human/user)
Expand Down

0 comments on commit a723658

Please sign in to comment.