From b49b074eb441fe5d3c1f6da37ec808e0384e6035 Mon Sep 17 00:00:00 2001 From: Lorenc Pekaj Date: Tue, 16 Oct 2018 21:25:21 +1100 Subject: [PATCH] adjust offset for weed plant --- gamemodes/irresistible/cnr/features/weed.pwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamemodes/irresistible/cnr/features/weed.pwn b/gamemodes/irresistible/cnr/features/weed.pwn index 0760c80..4459125 100644 --- a/gamemodes/irresistible/cnr/features/weed.pwn +++ b/gamemodes/irresistible/cnr/features/weed.pwn @@ -261,7 +261,7 @@ stock Weed_CreatePlant( playerid, Float: X, Float: Y, Float: Z, required_time = g_weedData[ weedid ] [ E_Z ] = Z; Streamer_Update( playerid ); - MoveDynamicObject( g_weedData[ weedid ] [ E_OBJECT ], X, Y, Z + 0.9, ( 0.9 / float( required_time ) ) * 2.8 ); // takes about 9 minutes to appear + MoveDynamicObject( g_weedData[ weedid ] [ E_OBJECT ], X, Y, Z + 0.6, ( 0.6 / float( required_time ) ) * 3.5 ); Iter_Add( weedplants, weedid ); }