Skip to content

Commit

Permalink
fix base64Encode and base64Decode deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando-A-Rocha committed Nov 20, 2024
1 parent 33f62c3 commit deaf986
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Server/mods/deathmatch/logic/CResourceChecker.Data.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ namespace
//{false, "doesPedHaveJetPack", "isPedWearingJetpack"},

// Base Encoding & Decoding
{false, "base64Encode", "encodeString"},
{false, "base64Decode", "decodeString"},
{true, "base64Encode", "Please manually change this to encodeString (different syntax). Refer to the wiki for details"},
{true, "base64Decode", "Please manually change this to decodeString (different syntax). Refer to the wiki for details"},

{false, "setHelicopterRotorSpeed", "setVehicleRotorSpeed"}
};
Expand Down Expand Up @@ -271,7 +271,7 @@ namespace
{true, "setPlayerDiscordJoinParams", "See GitHub PR #2499 for more details"},

// Base Encoding & Decoding
{false, "base64Encode", "encodeString"},
{false, "base64Decode", "decodeString"}
{true, "base64Encode", "Please manually change this to encodeString (different syntax). Refer to the wiki for details"},
{true, "base64Decode", "Please manually change this to decodeString (different syntax). Refer to the wiki for details"}
};
} // namespace

0 comments on commit deaf986

Please sign in to comment.