diff options
| author | void_17 <61356189+void2012@users.noreply.github.com> | 2026-03-02 02:15:04 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-02 02:15:04 +0700 |
| commit | 38b442b1e33726f011fd6a28824fb8e6e99ccb5a (patch) | |
| tree | 786ce5f5a3fc3ac0f1010ac3fbb944862741c554 /Minecraft.Client/Common/DLC/DLCSkinFile.cpp | |
| parent | f5ebb5bfff1c54d031a682dfba1b29f70ffb90df (diff) | |
| parent | 6080c4ceac7a0968db06deac0853209f69aba2ab (diff) | |
Merge pull request #37 from simulpingus/main
Unlock DLC, fix world names in load menu, fix dlc pack titles
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; } |
