From 5f36fdcea7ea2ca2cc054c82065cde0065316b16 Mon Sep 17 00:00:00 2001 From: aussprites Date: Tue, 4 Dec 2012 18:38:03 +0000 Subject: [PATCH] added ..() to new(), thanks to Giacom for telling me why git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5258 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/structures/flora.dm | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index b6d7c328017..369e5e0a22e 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -13,6 +13,7 @@ /obj/structure/flora/tree/pine/New() icon_state = "pine_[rand(1, 3)]" + ..() /obj/structure/flora/tree/pine/xmas name = "xmas tree" @@ -21,6 +22,7 @@ /obj/structure/flora/tree/pine/New() icon_state = "pine_c" + ..() /obj/structure/flora/tree/dead icon = 'icons/obj/flora/deadtrees.dmi' @@ -28,6 +30,7 @@ /obj/structure/flora/tree/dead/New() icon_state = "tree_[rand(1, 6)]" + ..() //grass @@ -41,6 +44,7 @@ /obj/structure/flora/grass/brown/New() icon_state = "snowgrass[rand(1, 3)]bb" + ..() /obj/structure/flora/grass/green @@ -48,12 +52,14 @@ /obj/structure/flora/grass/green/New() icon_state = "snowgrass[rand(1, 3)]gb" + ..() /obj/structure/flora/grass/both icon_state = "snowgrassall1" /obj/structure/flora/grass/both/New() icon_state = "snowgrassall[rand(1, 3)]" + ..() //bushes @@ -65,6 +71,7 @@ /obj/structure/flora/bush/New() icon_state = "snowbush[rand(1, 6)]" + ..() //newbushes @@ -76,94 +83,109 @@ /obj/structure/flora/ausbushes/New() icon_state = "firstbush_[rand(1, 4)]" - + ..() /obj/structure/flora/ausbushes/reedbush icon_state = "reedbush_1" /obj/structure/flora/ausbushes/reedbush/New() icon_state = "reedbush_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/leafybush icon_state = "leafybush_1" /obj/structure/flora/ausbushes/leafybush/New() icon_state = "leafybush_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/palebush icon_state = "palebush_1" /obj/structure/flora/ausbushes/palebush/New() icon_state = "palebush_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/stalkybush icon_state = "stalkybush_1" /obj/structure/flora/ausbushes/stalkybush/New() icon_state = "stalkybush_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/grassybush icon_state = "grassybush_1" /obj/structure/flora/ausbushes/grassybush/New() icon_state = "grassybush_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/fernybush icon_state = "fernybush_1" /obj/structure/flora/ausbushes/fernybush/New() icon_state = "fernybush_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/sunnybush icon_state = "sunnybush_1" /obj/structure/flora/ausbushes/sunnybush/New() icon_state = "sunnybush_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/genericbush icon_state = "genericbush_1" /obj/structure/flora/ausbushes/genericbush/New() icon_state = "genericbush_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/pointybush icon_state = "pointybush_1" /obj/structure/flora/ausbushes/pointybush/New() icon_state = "pointybush_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/lavendergrass icon_state = "lavendergrass_1" /obj/structure/flora/ausbushes/lavendergrass/New() icon_state = "lavendergrass_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/ywflowers icon_state = "ywflowers_1" /obj/structure/flora/ausbushes/ywflowers/New() icon_state = "ywflowers_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/brflowers icon_state = "brflowers_1" /obj/structure/flora/ausbushes/brflowers/New() icon_state = "brflowers_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/ppflowers icon_state = "ppflowers_1" /obj/structure/flora/ausbushes/ppflowers/New() icon_state = "ppflowers_[rand(1, 4)]" + ..() /obj/structure/flora/ausbushes/sparsegrass icon_state = "sparsegrass_1" /obj/structure/flora/ausbushes/sparsegrass/New() icon_state = "sparsegrass_[rand(1, 3)]" + ..() /obj/structure/flora/ausbushes/fullgrass icon_state = "fullgrass_1" /obj/structure/flora/ausbushes/fullgrass/New() - icon_state = "fullgrass_[rand(1, 3)]" \ No newline at end of file + icon_state = "fullgrass_[rand(1, 3)]" + ..() \ No newline at end of file