diff options
| author | Slenderman <ssimulpong@outlook.com> | 2026-03-01 13:38:11 -0500 |
|---|---|---|
| committer | Slenderman <ssimulpong@outlook.com> | 2026-03-01 13:38:11 -0500 |
| commit | 90504b14794c912decbee51cb23cd966539cc354 (patch) | |
| tree | d8f7ff41c003b64be6161ee4879c79ed3b4cb52d /Minecraft.Client/Common/DLC/DLCSkinFile.cpp | |
| parent | 99a8c53bc1f84042e682a67abbd3f49d4b94dba8 (diff) | |
fix various things
Diffstat (limited to 'Minecraft.Client/Common/DLC/DLCSkinFile.cpp')
| -rw-r--r-- | Minecraft.Client/Common/DLC/DLCSkinFile.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Minecraft.Client/Common/DLC/DLCSkinFile.cpp b/Minecraft.Client/Common/DLC/DLCSkinFile.cpp index f3768a34..c845acd9 100644 --- a/Minecraft.Client/Common/DLC/DLCSkinFile.cpp +++ b/Minecraft.Client/Common/DLC/DLCSkinFile.cpp @@ -205,7 +205,9 @@ bool DLCSkinFile::getParameterAsBool(DLCManager::EDLCParameterType type) switch(type) { case DLCManager::e_DLCParamType_Free: - return m_bIsFree; + // Patch all DLC to be "paid" + return false; + // return m_bIsFree; default: return false; } |
