Skip to content

Commit

Permalink
[MIRROR] Examine will no longer exclaim for everything (#5032)
Browse files Browse the repository at this point in the history
* Examine will no longer exclaim for everything (#4400)

* [MIRROR] Examine will no longer exclaim for everything

---------

Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
3 people authored Sep 15, 2024
1 parent 07d3f0d commit e3ac77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@
var/list/result = examinify.examine(src)
var/atom_title = examinify.examine_title(src, thats = TRUE)
SEND_SIGNAL(src, COMSIG_MOB_EXAMINING, examinify, result)
result_combined = (atom_title ? "[span_slightly_larger("[atom_title]![EXAMINE_SECTION_BREAK]")]" : "") + jointext(result, "<br>") // NOVA EDIT CHANGE - No more separator_hr + exclamation point for mobs - ORIGINAL: result_combined = (atom_title ? "[span_slightly_larger(separator_hr("[atom_title]."))]" : "") + jointext(result, "<br>")
result_combined = (atom_title ? "[span_slightly_larger("[atom_title][ismob(examinify) ? "!" :"."][EXAMINE_SECTION_BREAK]")]" : "") + jointext(result, "<br>") // NOVA EDIT CHANGE - No more separator_hr + exclamation point for mobs - ORIGINAL: result_combined = (atom_title ? "[span_slightly_larger(separator_hr("[atom_title]."))]" : "") + jointext(result, "<br>")
result_combined = replacetext(result_combined, "<hr><br>", "<hr>") // NOVA EDIT ADDITION - bit of a hack here to make sure we don't get linebreaks coming after headers

to_chat(src, examine_block(span_infoplain(result_combined)))
Expand Down

0 comments on commit e3ac77e

Please sign in to comment.