diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index d25124a0a9a..f38a9d2790b 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -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) diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index c497f3d023e..2c87cf9410a 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -255,6 +255,8 @@ if(ticker.mode.memes.len > 0) dat += "
" 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 += "" diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 8a0a6dd6285..9fba5563c1f 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -999,6 +999,9 @@ if (sleeping > 0) if(stat == 0) + // BUG: this doesn't seem to happen ever.. probably when you hit sleep willingly, + // it automatically adjusts your stat without calling this proc + // show them a message so they know what's going on src << "\blue You feel very drowsy.. Your eyelids become heavy..." diff --git a/html/changelog.html b/html/changelog.html index fe188a03dac..80ab0646ff6 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -47,6 +47,14 @@ Stuff which is in development and not yet visible to players or just code relate should be listed in the changelog upon commit though. Thanks. --> +
+

22 May 2012

+

cib updated:

+ +
+

19 May 2012

cib updated:

Memes
[M.key][M.client ? "" : " (logged out)"][M.stat == 2 ? " (DEAD)" : ""]