0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Replaced magic string with enum value

This commit is contained in:
Dev 2024-06-16 18:44:22 +01:00
parent 8f3a065e2d
commit 1546bbfc16

View File

@ -661,7 +661,7 @@ export class BotGenerator
if (bot.Info.GameVersion === "unheard_edition") if (bot.Info.GameVersion === "unheard_edition")
{ {
const pockets = bot.Inventory.items.find((item) => item.slotId === "Pockets"); const pockets = bot.Inventory.items.find((item) => item.slotId === "Pockets");
pockets._tpl = "65e080be269cbd5c5005e529"; pockets._tpl = ItemTpl.POCKETS_1X4_TUE;
} }
} }
} }