Fixes a few errors.

This commit is contained in:
LorenLuke
2017-04-11 00:39:21 -07:00
parent cebbac32e8
commit 69a8d84344
2 changed files with 8 additions and 2 deletions

View File

@@ -162,6 +162,12 @@
update_icon()
return 1
/obj/screen/zone_sel/proc/set_selected_zone(bodypart)
var/old_selecting = selecting
selecting = bodypart
if(old_selecting != selecting)
update_icon()
/obj/screen/zone_sel/update_icon()
overlays.Cut()
overlays += image('icons/mob/zone_sel.dmi', "[selecting]")

View File

@@ -1024,7 +1024,7 @@ mob/proc/yank_out_object()
/client/verb/body_toggle_head()
set name = "body-toggle-head"
set hidden = 1
toggle_zone_sel(list(BP_HEAD,BP_EYES,BP_MOUTH))
toggle_zone_sel(list(BP_HEAD, O_EYES, O_MOUTH))
/client/verb/body_r_arm()
set name = "body-r-arm"
@@ -1039,7 +1039,7 @@ mob/proc/yank_out_object()
/client/verb/body_chest()
set name = "body-chest"
set hidden = 1
toggle_zone_sel(list(BP_CHEST))
toggle_zone_sel(list(BP_TORSO))
/client/verb/body_groin()
set name = "body-groin"