Skip to content

Commit

Permalink
Merge pull request tgstation#7631 from phil235/SinguloInvestigateLogFix
Browse files Browse the repository at this point in the history
Fix singularity investigate log
  • Loading branch information
gcoremans committed Feb 10, 2015
2 parents e5e8b27 + 50632ce commit 7882b38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@
gain = 100
if(mind.assigned_role == "Clown")
gain = rand(-300, 300)
investigate_log(" has consumed [key_name(src)].","singulo") //Oh that's where the clown ended up!
investigate_log("([key_name(src)]) has been consumed by the singularity.","singulo") //Oh that's where the clown ended up!
gib()
return(gain)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ Sorry Giacom. Please don't be mad :(

/mob/living/singularity_act()
var/gain = 20
investigate_log(" has consumed [key_name(src)].","singulo") //Oh that's where the clown ended up!
investigate_log("([key_name(src)]) has been consumed by the singularity.","singulo") //Oh that's where the clown ended up!
gib()
return(gain)

Expand Down

0 comments on commit 7882b38

Please sign in to comment.