diff --git a/include/vcryptpp/VICE.h b/include/vcryptpp/VICE.h index bba1a40ff..c509eb176 100644 --- a/include/vcryptpp/VICE.h +++ b/include/vcryptpp/VICE.h @@ -23,6 +23,7 @@ constexpr std::string_view COUNTER_STRIKE_PROMOD = "H1aRQ0n1"; constexpr std::string_view DAY_OF_DEFEAT_SOURCE = "Wl0u5B3F"; constexpr std::string_view DYSTOPIA_1_2 = "pH3apO8w"; constexpr std::string_view DYSTOPIA_1_3 = "G8stUh3F"; +constexpr std::string_view FORTRESS_FOREVER_PRE_GREENLIGHT = "saxEWr5v"; constexpr std::string_view GOLDEN_EYE_SOURCE = "Gr3naDes"; constexpr std::string_view HALF_LIFE_2_CTF = "R1dj3axP"; constexpr std::string_view HALF_LIFE_2_DM = DEFAULT; diff --git a/lang/c/include/vcryptppc/VICE.h b/lang/c/include/vcryptppc/VICE.h index 2a65f0bdc..a31924703 100644 --- a/lang/c/include/vcryptppc/VICE.h +++ b/lang/c/include/vcryptppc/VICE.h @@ -13,6 +13,7 @@ SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_counter_strike_prom SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_day_of_defeat_source, "Wl0u5B3F"); SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_dystopia_1_2, "pH3apO8w"); SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_dystopia_1_3, "G8stUh3F"); +SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_fortress_forever_pre_greenlight, "saxEWr5v"); SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_golden_eye_source, "Gr3naDes"); SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_half_life_2_ctf, "R1dj3axP"); SOURCEPP_CLSVAR_EXT(vcryptpp, vice, const char*, known_codes_half_life_2_dm, "x9Ke0BY7"); diff --git a/lang/csharp/src/vcryptpp/VICE.cs b/lang/csharp/src/vcryptpp/VICE.cs index b8e6b752b..cf354e499 100644 --- a/lang/csharp/src/vcryptpp/VICE.cs +++ b/lang/csharp/src/vcryptpp/VICE.cs @@ -28,6 +28,7 @@ public static class KnownCodes { public const string DAY_OF_DEFEAT_SOURCE = "Wl0u5B3F"; public const string DYSTOPIA_1_2 = "pH3apO8w"; public const string DYSTOPIA_1_3 = "G8stUh3F"; + public const string FORTRESS_FOREVER_PRE_GREENLIGHT = "saxEWr5v"; public const string GOLDEN_EYE_SOURCE = "Gr3naDes"; public const string HALF_LIFE_2_CTF = "R1dj3axP"; public const string HALF_LIFE_2_DM = DEFAULT; diff --git a/lang/python/src/vcryptpp.h b/lang/python/src/vcryptpp.h index dad47a224..f7a9243d6 100644 --- a/lang/python/src/vcryptpp.h +++ b/lang/python/src/vcryptpp.h @@ -53,6 +53,7 @@ inline void register_python(py::module_& m) { KnownCodes.attr("DAY_OF_DEFEAT_SOURCE") = DAY_OF_DEFEAT_SOURCE; KnownCodes.attr("DYSTOPIA_1_2") = DYSTOPIA_1_2; KnownCodes.attr("DYSTOPIA_1_3") = DYSTOPIA_1_3; + KnownCodes.attr("FORTRESS_FOREVER_PRE_GREENLIGHT") = FORTRESS_FOREVER_PRE-GREENLIGHT; KnownCodes.attr("GOLDEN_EYE_SOURCE") = GOLDEN_EYE_SOURCE; KnownCodes.attr("HALF_LIFE_2_CTF") = HALF_LIFE_2_CTF; KnownCodes.attr("HALF_LIFE_2_DM") = HALF_LIFE_2_DM;