Merge pull request #428 from Petethegoat/misc_changes

Sprite update and minor fix
This commit is contained in:
Giacomand
2013-04-23 11:45:03 -07:00
2 changed files with 4 additions and 2 deletions

View File

@@ -798,8 +798,10 @@ Please contact me on #coderbus IRC. ~Carn x
overlays -= overlays_standing[LEGCUFF_LAYER]
overlays_lying[LEGCUFF_LAYER] = image("icon" = 'icons/mob/mob.dmi', "icon_state" = "legcuff2", "layer" = -LEGCUFF_LAYER)
overlays_standing[LEGCUFF_LAYER] = image("icon" = 'icons/mob/mob.dmi', "icon_state" = "legcuff1", "layer" = -LEGCUFF_LAYER)
overlays += overlays_lying[LEGCUFF_LAYER]
overlays += overlays_standing[LEGCUFF_LAYER]
if(src.lying)
overlays += overlays_lying[LEGCUFF_LAYER]
else
overlays += overlays_standing[LEGCUFF_LAYER]
if(src.m_intent != "walk")
src.m_intent = "walk"
if(src.hud_used && src.hud_used.move_intent)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB