diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm
index febb11112a4..4d60b0eec87 100644
--- a/code/game/machinery/newscaster.dm
+++ b/code/game/machinery/newscaster.dm
@@ -296,11 +296,13 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co
if( isemptylist(src.viewing_channel.messages) )
dat+="No feed messages found in channel...
"
else
+ var/i = 0
for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages)
+ i++
dat+="-[MESSAGE.body]
"
if(MESSAGE.img)
- usr << browse_rsc(MESSAGE.img, "tmp_photo.png")
- dat+="
"
+ usr << browse_rsc(MESSAGE.img, "tmp_photo[i].png")
+ dat+="
"
dat+="\[Story by [MESSAGE.author]\]
"
dat+="
"
+ usr << browse_rsc(news_network.wanted_issue.img, "tmp_photow.png")
+ dat+="
"
else
dat+="None"
dat+="