From d66893daee77d5d504ec468c1ffc267b99faba98 Mon Sep 17 00:00:00 2001 From: Citrinate Date: Mon, 18 Dec 2023 13:14:40 -0500 Subject: [PATCH] Updated external resource paths --- CS2Interface/CS/GameData.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CS2Interface/CS/GameData.cs b/CS2Interface/CS/GameData.cs index bc9b27f..dd92f26 100644 --- a/CS2Interface/CS/GameData.cs +++ b/CS2Interface/CS/GameData.cs @@ -6,9 +6,9 @@ namespace CS2Interface { internal static class GameData { - internal static GameDataItems ItemsGame = new("https://raw.githubusercontent.com/Citrinate/CS2-ItemFileTracking/main/items_game.txt"); - internal static GameDataItemsCDN ItemsGameCdn = new("https://raw.githubusercontent.com/Citrinate/CS2-ItemFileTracking/main/items_game_cdn.txt"); - internal static GameDataText CsgoEnglish = new("https://raw.githubusercontent.com/Citrinate/CS2-ItemFileTracking/main/csgo_english.txt"); + internal static GameDataItems ItemsGame = new("https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/pak01_dir/scripts/items/items_game.txt"); + internal static GameDataItemsCDN ItemsGameCdn = new("https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/pak01_dir/scripts/items/items_game_cdn.txt"); + internal static GameDataText CsgoEnglish = new("https://raw.githubusercontent.com/SteamDatabase/GameTracking-CS2/master/game/csgo/pak01_dir/resource/csgo_english.txt"); private static bool IsUpdating = false; private static SemaphoreSlim UpdateSemaphore = new SemaphoreSlim(1, 1);