Skip to content

Commit

Permalink
bugfix: fixed mime baguette and griefsky runtimes (#4029)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell authored Dec 10, 2023
1 parent 30b8f6c commit de89fbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/holy_weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@
//would like to make the holder mime if they have it in on thier person in general
if(src == holder.l_hand || src == holder.r_hand)
for(var/mob/living/carbon/human/H in range(5, loc))
if(H.mind.assigned_role == "Clown")
if(H.mind?.assigned_role == "Clown")
H.Silence(20 SECONDS)
animate_fade_grayscale(H,20)
if(prob(10))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/simple_animal/bot/griefsky.dm
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
threatlevel = 0
else if(!("syndicate" in C.faction))
threatlevel = 20
if(is_taipan(z) && C.mind.assigned_role != "Space Base Syndicate Comms Officer" && (check_for_mug(C.get_active_hand()) || check_for_mug(C.get_inactive_hand())))
if(is_taipan(z) && C.mind?.assigned_role != "Space Base Syndicate Comms Officer" && (check_for_mug(C.get_active_hand()) || check_for_mug(C.get_inactive_hand())))
speak("[C.name] наглый вор! Положи кружку!", radio_channel)
threatlevel += 4
else
Expand Down

0 comments on commit de89fbb

Please sign in to comment.