Updated changelog. Added some bug info to places in the code.

This commit is contained in:
cib
2012-05-22 14:29:01 +02:00
parent fda676435e
commit 79e2cdef86
4 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ var/global/BSACooldown = 0
newmeme.mind.transfer_to(M)
message_admins("Failed to find host for meme [M.key]. Aborting.")
memes += newmeme
ticker.mode.memes += newmeme
if(delmob)
del(M)
+2
View File
@@ -255,6 +255,8 @@
if(ticker.mode.memes.len > 0)
dat += "<br><table cellspacing=5><tr><td><B>Memes</B></td><td></td><td></td></tr>"
for(var/datum/mind/meme in ticker.mode.memes)
// BUG: For some reason, the memes themselves aren't showing up, even though the list isn't empty
// and the "Meme" header is displayed
var/mob/living/parasite/meme/M = meme.current
if(M)
dat += "<tr><td><a href='?src=\ref[src];adminplayeropts=\ref[M]'>[M.key]</a>[M.client ? "" : " <i>(logged out)</i>"][M.stat == 2 ? " <b><font color=red>(DEAD)</font></b>" : ""]</td>"