Adds Berserk

This commit is contained in:
Neerti
2018-01-11 01:35:14 -05:00
parent b7c67cba68
commit cca2cc5a23
32 changed files with 646 additions and 15 deletions
+9 -1
View File
@@ -1117,4 +1117,12 @@ mob/proc/yank_out_object()
if(!check_has_body_select())
return
var/obj/screen/zone_sel/selector = mob.zone_sel
selector.set_selected_zone(next_in_list(mob.zone_sel.selecting,zones))
selector.set_selected_zone(next_in_list(mob.zone_sel.selecting,zones))
// This handles setting the client's color variable, which makes everything look a specific color.
// This proc is here so it can be called without needing to check if the client exists, or if the client relogs.
// This is for inheritence since /mob/living will serve most cases. If you need ghosts to use this you'll have to implement that yourself.
/mob/proc/update_client_color()
if(client && client.color)
animate(client, color = null, time = 10)
return