Skip to content

Commit 6bed5f4

Browse files
authored
Fixes (#794)
1 parent ba32755 commit 6bed5f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

code/modules/mob/living/basic/bots/_bots.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ GLOBAL_LIST_INIT(command_strings, list(
105105
AddElement(/datum/element/relay_attackers)
106106
RegisterSignal(src, COMSIG_MOVABLE_MOVED, PROC_REF(handle_loop_movement))
107107
RegisterSignal(src, COMSIG_ATOM_WAS_ATTACKED, PROC_REF(after_attacked))
108-
RegisterSignal(src, COMSIG_OBJ_ALLOWED, PROC_REF(attempt_access))
108+
RegisterSignal(src, COMSIG_MOB_TRIED_ACCESS, PROC_REF(attempt_access))
109109
ADD_TRAIT(src, TRAIT_NO_GLIDE, INNATE_TRAIT)
110110
LoadComponent(/datum/component/bloodysoles/bot)
111111
GLOB.bots_list += src

code/modules/mob/mob.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@
524524
var/list/result = examinify.examine_more(src)
525525
if(!length(result))
526526
result += span_notice("<i>You examine [examinify] closer, but find nothing of interest...</i>")
527-
result_combined = jointext(result, "<br>")
527+
result_combined = examine_block(jointext(result, "<br>"))
528528

529529
else
530530
client.recent_examines[ref_to_atom] = world.time // set to when we last normal examine'd them

0 commit comments

Comments
 (0)