diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm
index dd2f1a1e47f..002fabb9f8b 100644
--- a/code/game/machinery/computer/arcade.dm
+++ b/code/game/machinery/computer/arcade.dm
@@ -597,14 +597,13 @@ GLOBAL_LIST_INIT(arcade_prize_pool, list(
return ..() //well boys we did it, lists are no more
/obj/machinery/computer/arcade/battle/examine_more(mob/user)
- to_chat(user, "Scribbled on the side of the Arcade Machine you notice some writing...\
- \nmagical -> >=50 power\
- \nsmart -> defend, defend, light attack\
- \nshotgun -> defend, defend, power attack\
- \nshort temper -> counter, counter, counter\
- \npoisonous -> light attack, light attack, light attack\
- \nchonker -> power attack, power attack, power attack")
- return ..()
+ var/list/msg = list("You notice some writing scribbled on the side of [src]...")
+ msg += "\tsmart -> defend, defend, light attack"
+ msg += "\tshotgun -> defend, defend, power attack"
+ msg += "\tshort temper -> counter, counter, counter"
+ msg += "\tpoisonous -> light attack, light attack, light attack"
+ msg += "\tchonker -> power attack, power attack, power attack"
+ return msg
/obj/machinery/computer/arcade/battle/emag_act(mob/user)
if(obj_flags & EMAGGED)
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 51df052f895..d53e9aab03a 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -222,6 +222,7 @@
/obj/item/paper/examine_more(mob/user)
ui_interact(user)
+ return list("You try to read [src]...")
/obj/item/paper/can_interact(mob/user)