From fd542d14c4abbba7cd540cc1728929dce75592fc Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Sat, 26 May 2012 09:01:24 +0300 Subject: [PATCH] Fixed the bug where people would not see the formatted changelog --- code/modules/mob/mob.dm | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 114c569fdca..2fb5c9aa858 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -476,9 +476,25 @@ set name = "Changelog" set category = "OOC" if (client) - src << browse_rsc('postcardsmall.jpg') - src << browse_rsc('somerights20.png') - src << browse_rsc('88x31.png') + src.getFiles('postcardsmall.jpg', + 'somerights20.png', + '88x31.png', + 'bug-minus.png', + 'cross-circle.png', + 'hard-hat-exclamation.png', + 'image-minus.png', + 'image-plus.png', + 'music-minus.png', + 'music-plus.png', + 'tick-circle.png', + 'wrench-screwdriver.png', + 'spell-check.png', + 'burn-exclamation.png', + 'chevron.png', + 'chevron-expand.png', + 'changelog.css', + 'changelog.js' + ) src << browse('changelog.html', "window=changes;size=675x650") client.changes = 1