From 4ed8769e930f6ffa5763ba2fb5f11c76fdcc5ffc Mon Sep 17 00:00:00 2001 From: seb3sec Date: Thu, 19 Feb 2015 13:16:44 +0100 Subject: [PATCH] Fix for compile error "Item listed twice..." The type attribute was defined twice for ItemHempPlant --- SQF/dayz_code/Configs/CfgMagazines/Planting.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgMagazines/Planting.hpp b/SQF/dayz_code/Configs/CfgMagazines/Planting.hpp index cc5ec358e..b9725a30d 100644 --- a/SQF/dayz_code/Configs/CfgMagazines/Planting.hpp +++ b/SQF/dayz_code/Configs/CfgMagazines/Planting.hpp @@ -75,7 +75,6 @@ class ItemHempSeed: CA_Magazine { class ItemHempPlant: CA_Magazine { scope = public; count = 1; - type = 256; displayName = "A Hemp Plant"; descriptionShort = "A Hemp Plant"; weight = 0.1; @@ -90,4 +89,4 @@ class ItemHempPlant: CA_Magazine { create = "MAP_c_fern"; // TODO: model for Hemp Stage 1 }; }; -}; \ No newline at end of file +};