Towercap log/plank shit

This commit is contained in:
Firecage
2014-07-05 18:03:25 +02:00
parent 4e4c05e46f
commit 0819cb12bd
+2 -2
View File
@@ -45,7 +45,6 @@
seed = "/obj/item/seeds/towermycelium"
attack_verb = list("bashed", "battered", "bludgeoned", "whacked")
var/list/accepted = list(/obj/item/weapon/reagent_containers/food/snacks/grown/tobacco,
/obj/item/weapon/reagent_containers/food/snacks/grown/tobacco,
/obj/item/weapon/reagent_containers/food/snacks/grown/tobacco_space,
/obj/item/weapon/reagent_containers/food/snacks/grown/tea_aspera,
/obj/item/weapon/reagent_containers/food/snacks/grown/tea_astra,
@@ -65,8 +64,9 @@
for (var/obj/item/stack/sheet/mineral/wood/G in user.loc)
if(G==NG)
continue
if(G.amount>=G.max_amount)
if(G.amount >= G.max_amount)
continue
G.amount += round(potency / 25)
G.attackby(NG, user)
usr << "You add the newly-formed wood to the stack. It now contains [NG.amount] planks."
qdel(src)