diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index c1695173533..7171236bb9f 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -212,6 +212,7 @@ verbs += /client/proc/deadmin_self verbs += /client/proc/giveruntimelog //used by coders to retrieve runtime logs verbs += /client/proc/togglebuildmodeself + verbs += /client/proc/debug_controller else return //Game Admin @@ -231,7 +232,6 @@ verbs += /client/proc/play_local_sound verbs += /client/proc/send_space_ninja verbs += /client/proc/restart_controller //Can call via aproccall --I_hate_easy_things.jpg, Mport --Agouri - verbs += /client/proc/debug_controller verbs += /client/proc/toggle_clickproc //TODO ERRORAGE (Temporary proc while the new clickproc is being tested) verbs += /client/proc/toggle_gravity_on verbs += /client/proc/toggle_gravity_off diff --git a/code/modules/mob/living/carbon/alien/alien.dm b/code/modules/mob/living/carbon/alien/alien.dm index 5f21569433c..2ac4871e296 100644 --- a/code/modules/mob/living/carbon/alien/alien.dm +++ b/code/modules/mob/living/carbon/alien/alien.dm @@ -154,6 +154,7 @@ /mob/living/carbon/alien/Stat() + statpanel("Status") stat(null, "Intent: [a_intent]") stat(null, "Move Mode: [m_intent]") diff --git a/code/modules/mob/living/carbon/alien/special/facehugger.dm b/code/modules/mob/living/carbon/alien/special/facehugger.dm index ca7a50414c0..909bf25219a 100644 --- a/code/modules/mob/living/carbon/alien/special/facehugger.dm +++ b/code/modules/mob/living/carbon/alien/special/facehugger.dm @@ -11,6 +11,7 @@ var/const/MAX_ACTIVE_TIME = 400 /obj/item/clothing/mask/facehugger name = "alien" desc = "It has some sort of a tube at the end of its tail." + icon = 'icons/mob/alien.dmi' icon_state = "facehugger" item_state = "facehugger" w_class = 1 //note: can be picked up by aliens unlike most other items of w_class below 4 @@ -167,6 +168,7 @@ var/const/MAX_ACTIVE_TIME = 400 return stat = CONSCIOUS + icon_state = "[initial(icon_state)]" /* for(var/mob/living/carbon/alien/alien in world) var/image/activeIndicator = image('icons/mob/alien.dmi', loc = src, icon_state = "facehugger_active") @@ -183,6 +185,7 @@ var/const/MAX_ACTIVE_TIME = 400 /* RemoveActiveIndicators() */ stat = UNCONSCIOUS + icon_state = "[initial(icon_state)]_inactive" spawn(rand(MIN_ACTIVE_TIME,MAX_ACTIVE_TIME)) GoActive() @@ -194,7 +197,7 @@ var/const/MAX_ACTIVE_TIME = 400 /* RemoveActiveIndicators() */ - icon_state = "facehugger_dead" + icon_state = "[initial(icon_state)]_dead" stat = DEAD for(var/mob/O in viewers(src, null)) diff --git a/html/changelog.html b/html/changelog.html index 416a2cbd05c..fec5564970e 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,6 +56,14 @@ should be listed in the changelog upon commit tho. Thanks. --> +
+

13 October 2012

+

Giacom updated:

+ +
+

8 October 2012

Giacom updated:

diff --git a/icons/mob/alien.dmi b/icons/mob/alien.dmi index 7bb7547eb27..b56c78bf4eb 100644 Binary files a/icons/mob/alien.dmi and b/icons/mob/alien.dmi differ diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index f9b63404d21..332352db315 100644 Binary files a/icons/obj/clothing/masks.dmi and b/icons/obj/clothing/masks.dmi differ