From 08213cbfcd6ee9b15a52a4d85ef0acb9cfe2785f Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 21:50:04 +0000 Subject: [PATCH] Remove commented out code --- TypeScript/13AddTrader/src/mod.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/TypeScript/13AddTrader/src/mod.ts b/TypeScript/13AddTrader/src/mod.ts index bff4533..2608d2a 100644 --- a/TypeScript/13AddTrader/src/mod.ts +++ b/TypeScript/13AddTrader/src/mod.ts @@ -120,13 +120,6 @@ class SampleTrader implements IPreAkiLoadMod, IPostDBLoadMod .addLoyaltyLevel(1) .export(tables.traders[baseJson._id]); - - // Add some singular items to trader (items without sub-items e.g. milk/bandage) - //this.traderHeper.addSingleItemsToTrader(tables, baseJson._id); - - // Add more complex items to trader (items with sub-items, e.g. guns) - //this.traderHeper.addComplexItemsToTrader(tables, baseJson._id, jsonUtil); - // Add trader to locale file, ensures trader text shows properly on screen // WARNING: adds the same text to ALL locales (e.g. chinese/french/english) this.traderHelper.addTraderToLocales(baseJson, tables, baseJson.name, "Cat", baseJson.nickname, baseJson.location, "This is the cat shop");