- Fixed retaliating simple animals acting weird and added some minor improvements. They should act better to mechs.

- Decreased the amount of possible chickens you can get from the crate.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5577 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2013-01-18 19:54:00 +00:00
parent 569378878d
commit 95392cae87
4 changed files with 53 additions and 28 deletions
@@ -58,7 +58,7 @@
/obj/structure/largecrate/chick/attackby(obj/item/weapon/W as obj, mob/user as mob)
if(istype(W, /obj/item/weapon/crowbar))
var/num = rand(4,12)
for(var/i=0,i<num,i++)
var/num = rand(4, 6)
for(var/i = 0, i < num, i++)
new /mob/living/simple_animal/chick(loc)
..()