aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/DLC/DLCSkinFile.cpp
diff options
context:
space:
mode:
authorChris <93794624+Foxify52@users.noreply.github.com>2026-03-01 14:18:00 -0500
committerChris <93794624+Foxify52@users.noreply.github.com>2026-03-01 14:18:00 -0500
commitc1aebee5b967239643b648aec15930cdf476b9ee (patch)
tree909d9b22f18b1909b78e30b55881e85fb35dca20 /Minecraft.Client/Common/DLC/DLCSkinFile.cpp
parent5484b78eca534ce26ff8744c566198935ba87d4b (diff)
parent38b442b1e33726f011fd6a28824fb8e6e99ccb5a (diff)
Merge branch 'main' of https://github.com/Foxify52/MinecraftConsoles
Diffstat (limited to 'Minecraft.Client/Common/DLC/DLCSkinFile.cpp')
-rw-r--r--Minecraft.Client/Common/DLC/DLCSkinFile.cpp4
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;
}