mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 22:18:27 +01:00
Add examine_block to all examined mobs
This commit is contained in:
@@ -112,7 +112,10 @@
|
||||
var/list/results = A.examine(src)
|
||||
if(!results || !results.len)
|
||||
results = list("You were unable to examine that. Tell a developer!")
|
||||
to_chat(src, "<span class='infoplain'>[jointext(results, "<br>")]</span>")
|
||||
var/final_string = "<span class='infoplain'>[jointext(results, "<br>")]</span>"
|
||||
if(ismob(A)) // mob descriptions matter more than others
|
||||
final_string = examine_block(final_string)
|
||||
to_chat(src, final_string)
|
||||
update_examine_panel(A)
|
||||
|
||||
/mob/proc/update_examine_panel(var/atom/A)
|
||||
|
||||
Reference in New Issue
Block a user