From 9481c9aa8be5663d60e80662c953977a604de320 Mon Sep 17 00:00:00 2001 From: Zasus Date: Sun, 1 Mar 2026 17:08:31 +0000 Subject: remove 4j source control warning when opening the solution --- MinecraftConsoles.sln | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/MinecraftConsoles.sln b/MinecraftConsoles.sln index 4d3b37f2..59897afe 100644 --- a/MinecraftConsoles.sln +++ b/MinecraftConsoles.sln @@ -9,18 +9,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Minecraft.Client", "Minecra EndProjectSection EndProject Global - GlobalSection(TeamFoundationVersionControl) = preSolution - SccNumberOfProjects = 3 - SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} - SccTeamFoundationServer = https://tfs4jstudios.visualstudio.com/defaultcollection - SccLocalPath0 = . - SccProjectUniqueName1 = Minecraft.World\\Minecraft.World.vcxproj - SccProjectName1 = Minecraft.World - SccLocalPath1 = Minecraft.World - SccProjectUniqueName2 = Minecraft.Client\\Minecraft.Client.vcxproj - SccProjectName2 = Minecraft.Client - SccLocalPath2 = Minecraft.Client - EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution ContentPackage_NO_TU|Durango = ContentPackage_NO_TU|Durango ContentPackage_NO_TU|ORBIS = ContentPackage_NO_TU|ORBIS -- cgit v1.2.3 From fa254306949eec458cdff71c3867ded0e7494d2f Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 18:19:38 +0100 Subject: Fix for exe not running, not founding the project directory In _tWinMain (Windows64_Minecraft.cpp) add logic to detect if the executable path contains "\\x64\\". If found, truncate the path at that position, append "\\Minecraft.Client" and call SetCurrentDirectoryA to set the process working directory. This ensures relative resource paths resolve correctly when running from an x64 build output directory; the change is guarded by a substring check and uses MAX_PATH-safe APIs. --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 931e7f17..50791c02 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -716,6 +716,16 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCED_PARAMETER(lpCmdLine); + + char exePath[MAX_PATH]; + GetModuleFileNameA(NULL, exePath, MAX_PATH); + char* x64_pos = strstr(exePath, "\\x64\\"); + if (x64_pos) { + *x64_pos = 0; + strcat_s(exePath, MAX_PATH, "\\Minecraft.Client"); + SetCurrentDirectoryA(exePath); + } + // Declare DPI awareness so GetSystemMetrics returns physical pixels SetProcessDPIAware(); g_iScreenWidth = GetSystemMetrics(SM_CXSCREEN); -- cgit v1.2.3 From 6cba5705dd24a3266cbfc729af0a96b06234fc34 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 2 Mar 2026 01:21:56 +0800 Subject: fix: fix sprinting --- Minecraft.Client/Input.cpp | 17 ++++++++++++----- Minecraft.Client/Input.h | 4 +++- Minecraft.Client/LocalPlayer.cpp | 24 ++++++++++++++++++------ 3 files changed, 33 insertions(+), 12 deletions(-) diff --git a/Minecraft.Client/Input.cpp b/Minecraft.Client/Input.cpp index 7fce9360..c1a3bb31 100644 --- a/Minecraft.Client/Input.cpp +++ b/Minecraft.Client/Input.cpp @@ -12,9 +12,11 @@ Input::Input() { xa = 0; ya = 0; + sprintForward = 0; wasJumping = false; jumping = false; sneaking = false; + usingKeyboardMovement = false; lReset = false; rReset = false; @@ -40,16 +42,18 @@ void Input::tick(LocalPlayer *player) ya = InputManager.GetJoypadStick_LY(iPad); else ya = 0.0f; + sprintForward = ya; + usingKeyboardMovement = false; #ifdef _WINDOWS64 // WASD movement (combine with gamepad) if (iPad == 0) { float kbX = 0.0f, kbY = 0.0f; - if (KMInput.IsKeyDown('W')) kbY += 1.0f; - if (KMInput.IsKeyDown('S')) kbY -= 1.0f; - if (KMInput.IsKeyDown('A')) kbX += 1.0f; // inverted like gamepad - if (KMInput.IsKeyDown('D')) kbX -= 1.0f; + if (KMInput.IsKeyDown('W')) { kbY += 1.0f; sprintForward += 1.0f; usingKeyboardMovement = true; } + if (KMInput.IsKeyDown('S')) { kbY -= 1.0f; sprintForward -= 1.0f; usingKeyboardMovement = true; } + if (KMInput.IsKeyDown('A')) { kbX += 1.0f; usingKeyboardMovement = true; } // inverted like gamepad + if (KMInput.IsKeyDown('D')) { kbX -= 1.0f; usingKeyboardMovement = true; } // Normalize diagonal if (kbX != 0.0f && kbY != 0.0f) { kbX *= 0.707f; kbY *= 0.707f; } if (pMinecraft->localgameModes[iPad]->isInputAllowed(MINECRAFT_ACTION_LEFT) || pMinecraft->localgameModes[iPad]->isInputAllowed(MINECRAFT_ACTION_RIGHT)) @@ -58,11 +62,13 @@ void Input::tick(LocalPlayer *player) ya = max(min(ya + kbY, 1.0f), -1.0f); } #endif + sprintForward = max(min(sprintForward, 1.0f), -1.0f); #ifndef _CONTENT_PACKAGE if (app.GetFreezePlayers()) { xa = ya = 0.0f; + sprintForward = 0.0f; player->abilities.flying = true; } #endif @@ -74,6 +80,7 @@ void Input::tick(LocalPlayer *player) lReset = true; } xa = ya = 0.0f; + sprintForward = 0.0f; } // 4J - in flying mode, don't actually toggle sneaking @@ -168,4 +175,4 @@ void Input::tick(LocalPlayer *player) #endif //OutputDebugString("INPUT: End input tick\n"); -} \ No newline at end of file +} diff --git a/Minecraft.Client/Input.h b/Minecraft.Client/Input.h index ef1dcd0c..d8dedd57 100644 --- a/Minecraft.Client/Input.h +++ b/Minecraft.Client/Input.h @@ -6,10 +6,12 @@ class Input public: float xa; float ya; + float sprintForward; bool wasJumping; bool jumping; bool sneaking; + bool usingKeyboardMovement; Input(); // 4J - added @@ -20,4 +22,4 @@ private: bool lReset; bool rReset; bool m_gamepadSneaking; -}; \ No newline at end of file +}; diff --git a/Minecraft.Client/LocalPlayer.cpp b/Minecraft.Client/LocalPlayer.cpp index aabd6a2b..ed286cd9 100644 --- a/Minecraft.Client/LocalPlayer.cpp +++ b/Minecraft.Client/LocalPlayer.cpp @@ -274,11 +274,13 @@ void LocalPlayer::aiStep() if (changingDimensionDelay > 0) changingDimensionDelay--; bool wasJumping = input->jumping; float runTreshold = 0.8f; + float sprintForward = input->sprintForward; - bool wasRunning = input->ya >= runTreshold; + bool wasRunning = sprintForward >= runTreshold; //input->tick( dynamic_pointer_cast( shared_from_this() ) ); // 4J-PB - make it a localplayer input->tick( this ); + sprintForward = input->sprintForward; if (isUsingItem()) { input->xa *= 0.2f; @@ -302,9 +304,20 @@ void LocalPlayer::aiStep() // world with low food, then reload it in creative. if(abilities.mayfly || isAllowedToFly() ) enoughFoodToSprint = true; + bool forwardEnoughToTriggerSprint = sprintForward >= runTreshold; + bool forwardReturnedToDeadzone = sprintForward == 0.0f; + bool forwardEnoughToContinueSprint = sprintForward >= runTreshold; + +#ifdef _WINDOWS64 + if (GetXboxPad() == 0 && input->usingKeyboardMovement) + { + forwardEnoughToContinueSprint = sprintForward > 0.0f; + } +#endif + #ifdef _WINDOWS64 // Keyboard sprint: Ctrl held while moving forward - if (GetXboxPad() == 0 && KMInput.IsKeyDown(VK_CONTROL) && input->ya > 0.0f && + if (GetXboxPad() == 0 && input->usingKeyboardMovement && KMInput.IsKeyDown(VK_CONTROL) && sprintForward > 0.0f && enoughFoodToSprint && !isUsingItem() && !hasEffect(MobEffect::blindness) && onGround) { if (!isSprinting()) setSprinting(true); @@ -314,7 +327,7 @@ void LocalPlayer::aiStep() // 4J - altered this slightly to make sure that the joypad returns to below returnTreshold in between registering two movements up to runThreshold if (onGround && !isSprinting() && enoughFoodToSprint && !isUsingItem() && !hasEffect(MobEffect::blindness)) { - if( !wasRunning && input->ya >= runTreshold ) + if( !wasRunning && forwardEnoughToTriggerSprint ) { if (sprintTriggerTime == 0) { @@ -331,7 +344,7 @@ void LocalPlayer::aiStep() } } } - else if( ( sprintTriggerTime > 0 ) && ( input->ya == 0.0f ) ) // ya of 0.0f here signifies that we have returned to the deadzone + else if( ( sprintTriggerTime > 0 ) && forwardReturnedToDeadzone ) // zero sprintForward here signifies that we have returned to the deadzone { sprintTriggerRegisteredReturn = true; } @@ -339,7 +352,7 @@ void LocalPlayer::aiStep() if (isSneaking()) sprintTriggerTime = 0; // 4J-PB - try not stopping sprint on collision //if (isSprinting() && (input->ya < runTreshold || horizontalCollision || !enoughFoodToSprint)) - if (isSprinting() && (input->ya < runTreshold || !enoughFoodToSprint)) + if (isSprinting() && (!forwardEnoughToContinueSprint || !enoughFoodToSprint || isSneaking() || isUsingItem())) { setSprinting(false); } @@ -1622,4 +1635,3 @@ void LocalPlayer::SetPlayerAdditionalModelParts(vectorpAdditionalMo { m_pAdditionalModelParts=pAdditionalModelParts; } - -- cgit v1.2.3 From 31e993d6eeb3e93f47617224e4ee6f015ca58913 Mon Sep 17 00:00:00 2001 From: rtm516 Date: Sun, 1 Mar 2026 17:29:59 +0000 Subject: Fix game exit --- Minecraft.Client/Common/UI/UIScene_MainMenu.cpp | 4 ++-- Minecraft.Client/Windows64/Windows64_App.cpp | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp index 7724aaaf..c909fbc6 100644 --- a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp @@ -334,7 +334,6 @@ void UIScene_MainMenu::handlePress(F64 controlId, F64 childId) m_eAction=eAction_RunUnlockOrDLC; signInReturnedFunc = &UIScene_MainMenu::UnlockFullGame_SignInReturned; break; -#if defined _XBOX case eControl_Exit: if( ProfileManager.IsFullVersion() ) { @@ -345,13 +344,14 @@ void UIScene_MainMenu::handlePress(F64 controlId, F64 childId) } else { +#ifdef _XBOX #ifdef _XBOX_ONE ui.ShowPlayerDisplayname(true); #endif ui.NavigateToScene(primaryPad,eUIScene_TrialExitUpsell); +#endif } break; -#endif #ifdef _DURANGO case eControl_XboxHelp: diff --git a/Minecraft.Client/Windows64/Windows64_App.cpp b/Minecraft.Client/Windows64/Windows64_App.cpp index ef9f6cf6..a8b2d9cc 100644 --- a/Minecraft.Client/Windows64/Windows64_App.cpp +++ b/Minecraft.Client/Windows64/Windows64_App.cpp @@ -26,6 +26,8 @@ void CConsoleMinecraftApp::StoreLaunchData() } void CConsoleMinecraftApp::ExitGame() { + // This is likely not the correct way to exit the game, but it will do for now + ExitProcess(0); } void CConsoleMinecraftApp::FatalLoadError() { -- cgit v1.2.3 From e23945a020f6483202e21df360f615b1ea55b119 Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 18:40:09 +0100 Subject: Fixed performance issue thx to @void2012 --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 24 +++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 50791c02..42fb2d44 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -717,13 +717,23 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, UNREFERENCED_PARAMETER(lpCmdLine); - char exePath[MAX_PATH]; - GetModuleFileNameA(NULL, exePath, MAX_PATH); - char* x64_pos = strstr(exePath, "\\x64\\"); - if (x64_pos) { - *x64_pos = 0; - strcat_s(exePath, MAX_PATH, "\\Minecraft.Client"); - SetCurrentDirectoryA(exePath); + WCHAR exePath[MAX_PATH] = { 0 }; + GetModuleFileNameW(NULL, exePath, MAX_PATH); + WCHAR* lastSlash = wcsrchr(exePath, L'\\'); + if (lastSlash) { + *lastSlash = L'\0'; + + WCHAR devCheckPath[MAX_PATH] = { 0 }; + swprintf_s(devCheckPath, MAX_PATH, L"%s\\..\\..\\Minecraft.Client\\Minecraft.Client.vcxproj", exePath); + + if (GetFileAttributesW(devCheckPath) != INVALID_FILE_ATTRIBUTES) { + WCHAR projectPath[MAX_PATH] = { 0 }; + swprintf_s(projectPath, MAX_PATH, L"%s\\..\\..\\Minecraft.Client", exePath); + SetCurrentDirectoryW(projectPath); + } + else { + SetCurrentDirectoryW(exePath); + } } // Declare DPI awareness so GetSystemMetrics returns physical pixels -- cgit v1.2.3 From 0714be8b8d0cdf8872b86dbb94ccbb683a483c0c Mon Sep 17 00:00:00 2001 From: Miyo Sho <135030944+yuri-kiss@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:57:42 -0500 Subject: fix: ps3 build error --- Minecraft.Client/Common/Consoles_App.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp index b325f3a1..c2082965 100644 --- a/Minecraft.Client/Common/Consoles_App.cpp +++ b/Minecraft.Client/Common/Consoles_App.cpp @@ -3217,7 +3217,7 @@ void CMinecraftApp::HandleXuiActions(void) bool gameStarted = false; for(int i = 0; i < pMinecraft->levels.length; i++) { - if (pMinecraft->levels.data[i] != nullptr) + if (pMinecraft->levels.data[i] != NULL) { gameStarted = true; break; @@ -9536,4 +9536,4 @@ bool CMinecraftApp::HasReachedMainMenu() { return m_hasReachedMainMenu; } -#endif \ No newline at end of file +#endif -- cgit v1.2.3 From bf24f709f96d4da96211a4d209c3938a94f909d0 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Sun, 1 Mar 2026 13:13:11 -0500 Subject: Copy other folders needed for a standalone release asset --- Minecraft.Client/Minecraft.Client.vcxproj | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index 8e54bc42..a6aeac2e 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1304,7 +1304,12 @@ if not exist "$(TargetDir)\savedata" mkdir "$(TargetDir)\savedata" Copying sound assets to output directory xcopy /q /y /i /s /e "$(ProjectDir)Durango\Sound" "$(OutDir)Durango\Sound" -xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" +xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" +xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" +xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" $(ProjectDir)xbox\xex-dev.xml @@ -1437,7 +1442,12 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU Copying sound assets to output directory xcopy /q /y /i /s /e "$(ProjectDir)Durango\Sound" "$(OutDir)Durango\Sound" -xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" +xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" +xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" +xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" $(ProjectDir)xbox\xex-dev.xml -- cgit v1.2.3 From 3db164d913a0e6e464cc9f32c6c471cbea7a46e7 Mon Sep 17 00:00:00 2001 From: APAmk2 <107351397+APAmk2@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:13:44 +0400 Subject: Windows: More proper shutdown --- Minecraft.Client/Windows64/Windows64_App.cpp | 4 ++-- Minecraft.Client/Windows64/Windows64_App.h | 2 ++ Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_App.cpp b/Minecraft.Client/Windows64/Windows64_App.cpp index a8b2d9cc..bba33cad 100644 --- a/Minecraft.Client/Windows64/Windows64_App.cpp +++ b/Minecraft.Client/Windows64/Windows64_App.cpp @@ -14,6 +14,7 @@ CConsoleMinecraftApp app; CConsoleMinecraftApp::CConsoleMinecraftApp() : CMinecraftApp() { + m_bShutdown = false; } void CConsoleMinecraftApp::SetRichPresenceContext(int iPad, int contextId) @@ -26,8 +27,7 @@ void CConsoleMinecraftApp::StoreLaunchData() } void CConsoleMinecraftApp::ExitGame() { - // This is likely not the correct way to exit the game, but it will do for now - ExitProcess(0); + m_bShutdown = true; } void CConsoleMinecraftApp::FatalLoadError() { diff --git a/Minecraft.Client/Windows64/Windows64_App.h b/Minecraft.Client/Windows64/Windows64_App.h index 39351d55..de8f6d85 100644 --- a/Minecraft.Client/Windows64/Windows64_App.h +++ b/Minecraft.Client/Windows64/Windows64_App.h @@ -29,6 +29,8 @@ public: // original code virtual void TemporaryCreateGameStart(); + + bool m_bShutdown; }; extern CConsoleMinecraftApp app; diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 42fb2d44..7fe77632 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -1054,7 +1054,7 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, } #endif MSG msg = {0}; - while( WM_QUIT != msg.message ) + while( WM_QUIT != msg.message && !app.m_bShutdown) { if( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) ) { -- cgit v1.2.3 From ec61d19d783da9dcc212aab5298ec98329280afd Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Sun, 1 Mar 2026 13:13:28 -0500 Subject: Revert "Merge pull request #25 from NEVARLeVrai/main" This reverts commit 33e1b5ceb9970e08cb6b2b987afdff4bd42331ac, reversing changes made to 44b68333a31727f2869470acb8df3dab2c653f68. This is a hacky way of doing it instead of just copying the assets that are needed --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 42fb2d44..931e7f17 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -716,26 +716,6 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCED_PARAMETER(lpCmdLine); - - WCHAR exePath[MAX_PATH] = { 0 }; - GetModuleFileNameW(NULL, exePath, MAX_PATH); - WCHAR* lastSlash = wcsrchr(exePath, L'\\'); - if (lastSlash) { - *lastSlash = L'\0'; - - WCHAR devCheckPath[MAX_PATH] = { 0 }; - swprintf_s(devCheckPath, MAX_PATH, L"%s\\..\\..\\Minecraft.Client\\Minecraft.Client.vcxproj", exePath); - - if (GetFileAttributesW(devCheckPath) != INVALID_FILE_ATTRIBUTES) { - WCHAR projectPath[MAX_PATH] = { 0 }; - swprintf_s(projectPath, MAX_PATH, L"%s\\..\\..\\Minecraft.Client", exePath); - SetCurrentDirectoryW(projectPath); - } - else { - SetCurrentDirectoryW(exePath); - } - } - // Declare DPI awareness so GetSystemMetrics returns physical pixels SetProcessDPIAware(); g_iScreenWidth = GetSystemMetrics(SM_CXSCREEN); -- cgit v1.2.3 From 90504b14794c912decbee51cb23cd966539cc354 Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 13:38:11 -0500 Subject: fix various things --- Minecraft.Client/Common/DLC/DLCPack.cpp | 7 +++++-- Minecraft.Client/Common/DLC/DLCSkinFile.cpp | 4 +++- Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp | 2 +- .../Common/UI/UIScene_SkinSelectMenu.cpp | 24 +++++++++++++++++++--- 4 files changed, 30 insertions(+), 7 deletions(-) diff --git a/Minecraft.Client/Common/DLC/DLCPack.cpp b/Minecraft.Client/Common/DLC/DLCPack.cpp index 23a2e44a..507e51a7 100644 --- a/Minecraft.Client/Common/DLC/DLCPack.cpp +++ b/Minecraft.Client/Common/DLC/DLCPack.cpp @@ -382,7 +382,10 @@ DWORD DLCPack::getFileIndexAt(DLCManager::EDLCType type, const wstring &path, bo bool DLCPack::hasPurchasedFile(DLCManager::EDLCType type, const wstring &path) { - if(type == DLCManager::e_DLCType_All) + // Patch all DLC to be "purchased" + return true; + + /*if(type == DLCManager::e_DLCType_All) { app.DebugPrintf("Unimplemented\n"); #ifndef _CONTENT_PACKAGE @@ -406,5 +409,5 @@ bool DLCPack::hasPurchasedFile(DLCManager::EDLCType type, const wstring &path) { //purchased return true; - } + }*/ } 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; } diff --git a/Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp b/Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp index e2cbc2aa..1c07e540 100644 --- a/Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp @@ -62,7 +62,7 @@ UIScene_LoadMenu::UIScene_LoadMenu(int iPad, void *initData, UILayer *parentLaye LoadMenuInitData *params = (LoadMenuInitData *)initData; - //m_labelGameName.init(app.GetString(IDS_WORLD_NAME)); + m_labelGameName.init(app.GetString(IDS_WORLD_NAME)); m_labelSeed.init(L""); m_labelCreatedMode.init(app.GetString(IDS_CREATED_IN_SURVIVAL)); diff --git a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp index 6910dd65..e40dc37a 100644 --- a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp @@ -1249,7 +1249,13 @@ void UIScene_SkinSelectMenu::updatePackDisplay() if(m_packIndex >= SKIN_SELECT_MAX_DEFAULTS) { DLCPack *thisPack = app.m_dlcManager.getPack(m_packIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); - setCentreLabel(thisPack->getName().c_str()); + // Fix the incorrect string type on title to display correctly + const char* name = (LPCSTR)thisPack->getName().c_str(); + int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); + std::wstring wName(len, 0); + MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); + setCentreLabel(wName.c_str()); + //setCentreLabel(thisPack->getName().c_str()); } else { @@ -1268,7 +1274,13 @@ void UIScene_SkinSelectMenu::updatePackDisplay() if(nextPackIndex >= SKIN_SELECT_MAX_DEFAULTS) { DLCPack *thisPack = app.m_dlcManager.getPack(nextPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); - setRightLabel(thisPack->getName().c_str()); + // Fix the incorrect string type on title to display correctly + const char* name = (LPCSTR)thisPack->getName().c_str(); + int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); + std::wstring wName(len, 0); + MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); + setRightLabel(wName.c_str()); + //setRightLabel(thisPack->getName().c_str()); } else { @@ -1287,7 +1299,13 @@ void UIScene_SkinSelectMenu::updatePackDisplay() if(previousPackIndex >= SKIN_SELECT_MAX_DEFAULTS) { DLCPack *thisPack = app.m_dlcManager.getPack(previousPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); - setLeftLabel(thisPack->getName().c_str()); + // Fix the incorrect string type on title to display correctly + const char* name = (LPCSTR)thisPack->getName().c_str(); + int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); + std::wstring wName(len, 0); + MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); + setLeftLabel(wName.c_str()); + //setLeftLabel(thisPack->getName().c_str()); } else { -- cgit v1.2.3 From 82fb9f4e33517ba237042aa250f7d924d9d6b11f Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 19:50:45 +0100 Subject: added Controls info (Keyboard & Mouse) to readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 279f7051..76b0afe1 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,23 @@ This project contains the source code of Minecraft Legacy Console Edition v1.3.0 - Added fullscreen mode support (toggle using F11) - Disabled V-Sync for better performance - Auto-detect native monitor resolution with DPI awareness, resulting in sharper visuals on high-resolution displays +- Full support for keyboard and mouse input + +## Controls (Keyboard & Mouse) + +- **Movement**: `W` `A` `S` `D` +- **Jump / Fly (Up)**: `Space` +- **Sneak / Fly (Down)**: `Shift` (Hold) +- **Sprint**: `Ctrl` (Hold) +- **Inventory**: `E` +- **Drop Item**: `Q` +- **Crafting**: `C` +- **Toggle View (FPS/TPS)**: `F5` +- **Fullscreen**: `F11` +- **Pause Menu**: `Esc` +- **Attack / Destroy**: `Left Click` +- **Use / Place**: `Right Click` +- **Select Item**: `Mouse Wheel` or keys `1` to `9` ## Build & Run -- cgit v1.2.3 From 6850c3b42c0e3919c45011fb4d9e24f839c9a569 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 01:54:47 +0700 Subject: Create pull_request_template.md --- .github/pull_request_template.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..c1108a81 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +# Pull Request Template + +## Description +Briefly describe the changes this PR introduces. + +## Changes + +### Previous Behavior +*Describe how the code behaved before this change.* + +### Root Cause +*Explain the core reason behind the erroneous/old behavior (e.g., bug, design flaw, missing edge case).* + +### New Behavior +*Describe how the code behaves after this change.* + +### Fix Implementation +*Detail exactly how the issue was resolved (specific code changes, algorithms, logic flows).* + +## Related Issues +- Fixes #[issue-number] +- Related to #[issue-number] -- cgit v1.2.3 From cde94faefa38b7056bb341604b64bfd8d6155509 Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:07:49 +0100 Subject: added feature request template --- .github/feature_request.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/feature_request.yaml diff --git a/.github/feature_request.yaml b/.github/feature_request.yaml new file mode 100644 index 00000000..39e0b223 --- /dev/null +++ b/.github/feature_request.yaml @@ -0,0 +1,46 @@ +--- +name: 🛠️ Feature Request +description: Suggest an idea to help us improve MinecraftConsoles +title: "[Feature]: " +labels: + - "enhancement" + +body: + - type: markdown + attributes: + value: | + **Thanks :heart: for taking the time to fill out this feature request report!** + We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. + + - type: textarea + attributes: + label: Description + description: | + A clear and concise description of the feature you're interested in. + validations: + required: true + + - type: textarea + attributes: + label: Suggested Solution + description: | + Describe the solution you'd like. A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Alternatives + description: | + Describe alternatives you've considered. + A clear and concise description of any alternative solutions or features you've considered. + validations: + required: false + + - type: textarea + attributes: + label: Additional Context + description: | + Add any other context about the problem here. + validations: + required: false -- cgit v1.2.3 From c23dc98b67e0b280069e56d3344b595771023dc2 Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:10:49 +0100 Subject: added bug report template --- .github/bug_report.yaml | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/bug_report.yaml diff --git a/.github/bug_report.yaml b/.github/bug_report.yaml new file mode 100644 index 00000000..7f3c2033 --- /dev/null +++ b/.github/bug_report.yaml @@ -0,0 +1,72 @@ +name: "🐛 Bug Report" +description: "Report a bug to help us improve MinecraftConsoles" +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + **Thanks for taking the time to report a bug!** + Please ensure you are using the latest version of the repository and have followed the build instructions in the README. + - type: textarea + id: description + attributes: + label: Description + description: "A clear and concise description of what the bug is." + placeholder: "Describe what happened..." + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: "How can we reproduce this bug?" + placeholder: | + 1. Open MinecraftConsoles.sln + 2. Set configuration to ... + 3. Run the project + 4. Do ... + validations: + required: true + - type: textarea + id: expected-actual + attributes: + label: Expected vs. Actual Behavior + description: "What did you expect to happen, and what actually happened?" + validations: + required: true + - type: dropdown + id: build-config + attributes: + label: Build Configuration + description: "Which configuration were you using?" + options: + - Debug + - Release + validations: + required: true + - type: dropdown + id: target-platform + attributes: + label: Target Platform + description: "Which platform were you targeting?" + options: + - Windows64 + - Other (please specify in context) + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment Details + description: "e.g., Visual Studio version, Windows version, Hardware specs." + placeholder: "Visual Studio 2022 v17.x, Windows 11..." + validations: + required: false + - type: textarea + id: context + attributes: + label: Additional Context + description: "Add any other context, screenshots, or logs here." + validations: + required: false -- cgit v1.2.3 From 6080c4ceac7a0968db06deac0853209f69aba2ab Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 14:12:39 -0500 Subject: use C++ style cast instead of C-style cast --- Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp index e40dc37a..bce5e34e 100644 --- a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp @@ -1250,7 +1250,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(m_packIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = (LPCSTR)thisPack->getName().c_str(); + const char* name = static_cast(thisPack->getName().c_str()); int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); std::wstring wName(len, 0); MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); @@ -1275,7 +1275,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(nextPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = (LPCSTR)thisPack->getName().c_str(); + const char* name = static_cast(thisPack->getName().c_str()); int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); std::wstring wName(len, 0); MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); @@ -1300,7 +1300,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(previousPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = (LPCSTR)thisPack->getName().c_str(); + const char* name = static_cast(thisPack->getName().c_str()); int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); std::wstring wName(len, 0); MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); -- cgit v1.2.3 From 5484b78eca534ce26ff8744c566198935ba87d4b Mon Sep 17 00:00:00 2001 From: Chris <93794624+Foxify52@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:17:45 -0500 Subject: Adjusted max memory usage for renderer --- Minecraft.Client/LevelRenderer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/LevelRenderer.h b/Minecraft.Client/LevelRenderer.h index 41eb3593..c0a98bba 100644 --- a/Minecraft.Client/LevelRenderer.h +++ b/Minecraft.Client/LevelRenderer.h @@ -44,7 +44,7 @@ public: #endif static const int CHUNK_Y_COUNT = Level::maxBuildHeight / CHUNK_SIZE; #if defined _XBOX_ONE - static const int MAX_COMMANDBUFFER_ALLOCATIONS = 512 * 1024 * 1024; // 4J - added + static const int MAX_COMMANDBUFFER_ALLOCATIONS = 2047 * 1024 * 1024; // Changed to 2047. 4J had set to 512. #elif defined __ORBIS__ static const int MAX_COMMANDBUFFER_ALLOCATIONS = 448 * 1024 * 1024; // 4J - added - hard limit is 512 so giving a lot of headroom here for fragmentation (have seen 16MB lost to fragmentation in multiplayer crash dump before) #elif defined __PS3__ -- cgit v1.2.3 From 15e952d4cbf5dde988890eb9ee28189e17441e6a Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:20:20 +0100 Subject: added config for issues --- .github/ISSUE_TEMPLATE/bug_report.yaml | 72 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yaml | 46 ++++++++++++++++++ .github/bug_report.yaml | 72 ----------------------------- .github/feature_request.yaml | 46 ------------------ 5 files changed, 119 insertions(+), 118 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml delete mode 100644 .github/bug_report.yaml delete mode 100644 .github/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..7f3c2033 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,72 @@ +name: "🐛 Bug Report" +description: "Report a bug to help us improve MinecraftConsoles" +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + **Thanks for taking the time to report a bug!** + Please ensure you are using the latest version of the repository and have followed the build instructions in the README. + - type: textarea + id: description + attributes: + label: Description + description: "A clear and concise description of what the bug is." + placeholder: "Describe what happened..." + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: "How can we reproduce this bug?" + placeholder: | + 1. Open MinecraftConsoles.sln + 2. Set configuration to ... + 3. Run the project + 4. Do ... + validations: + required: true + - type: textarea + id: expected-actual + attributes: + label: Expected vs. Actual Behavior + description: "What did you expect to happen, and what actually happened?" + validations: + required: true + - type: dropdown + id: build-config + attributes: + label: Build Configuration + description: "Which configuration were you using?" + options: + - Debug + - Release + validations: + required: true + - type: dropdown + id: target-platform + attributes: + label: Target Platform + description: "Which platform were you targeting?" + options: + - Windows64 + - Other (please specify in context) + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment Details + description: "e.g., Visual Studio version, Windows version, Hardware specs." + placeholder: "Visual Studio 2022 v17.x, Windows 11..." + validations: + required: false + - type: textarea + id: context + attributes: + label: Additional Context + description: "Add any other context, screenshots, or logs here." + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000..39e0b223 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,46 @@ +--- +name: 🛠️ Feature Request +description: Suggest an idea to help us improve MinecraftConsoles +title: "[Feature]: " +labels: + - "enhancement" + +body: + - type: markdown + attributes: + value: | + **Thanks :heart: for taking the time to fill out this feature request report!** + We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. + + - type: textarea + attributes: + label: Description + description: | + A clear and concise description of the feature you're interested in. + validations: + required: true + + - type: textarea + attributes: + label: Suggested Solution + description: | + Describe the solution you'd like. A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Alternatives + description: | + Describe alternatives you've considered. + A clear and concise description of any alternative solutions or features you've considered. + validations: + required: false + + - type: textarea + attributes: + label: Additional Context + description: | + Add any other context about the problem here. + validations: + required: false diff --git a/.github/bug_report.yaml b/.github/bug_report.yaml deleted file mode 100644 index 7f3c2033..00000000 --- a/.github/bug_report.yaml +++ /dev/null @@ -1,72 +0,0 @@ -name: "🐛 Bug Report" -description: "Report a bug to help us improve MinecraftConsoles" -title: "[Bug]: " -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to report a bug!** - Please ensure you are using the latest version of the repository and have followed the build instructions in the README. - - type: textarea - id: description - attributes: - label: Description - description: "A clear and concise description of what the bug is." - placeholder: "Describe what happened..." - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Steps to Reproduce - description: "How can we reproduce this bug?" - placeholder: | - 1. Open MinecraftConsoles.sln - 2. Set configuration to ... - 3. Run the project - 4. Do ... - validations: - required: true - - type: textarea - id: expected-actual - attributes: - label: Expected vs. Actual Behavior - description: "What did you expect to happen, and what actually happened?" - validations: - required: true - - type: dropdown - id: build-config - attributes: - label: Build Configuration - description: "Which configuration were you using?" - options: - - Debug - - Release - validations: - required: true - - type: dropdown - id: target-platform - attributes: - label: Target Platform - description: "Which platform were you targeting?" - options: - - Windows64 - - Other (please specify in context) - validations: - required: true - - type: textarea - id: environment - attributes: - label: Environment Details - description: "e.g., Visual Studio version, Windows version, Hardware specs." - placeholder: "Visual Studio 2022 v17.x, Windows 11..." - validations: - required: false - - type: textarea - id: context - attributes: - label: Additional Context - description: "Add any other context, screenshots, or logs here." - validations: - required: false diff --git a/.github/feature_request.yaml b/.github/feature_request.yaml deleted file mode 100644 index 39e0b223..00000000 --- a/.github/feature_request.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: 🛠️ Feature Request -description: Suggest an idea to help us improve MinecraftConsoles -title: "[Feature]: " -labels: - - "enhancement" - -body: - - type: markdown - attributes: - value: | - **Thanks :heart: for taking the time to fill out this feature request report!** - We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - - - type: textarea - attributes: - label: Description - description: | - A clear and concise description of the feature you're interested in. - validations: - required: true - - - type: textarea - attributes: - label: Suggested Solution - description: | - Describe the solution you'd like. A clear and concise description of what you want to happen. - validations: - required: true - - - type: textarea - attributes: - label: Alternatives - description: | - Describe alternatives you've considered. - A clear and concise description of any alternative solutions or features you've considered. - validations: - required: false - - - type: textarea - attributes: - label: Additional Context - description: | - Add any other context about the problem here. - validations: - required: false -- cgit v1.2.3 From a2bcce6426f6179ec8fbdda7086a16db2f69ae67 Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 14:22:01 -0500 Subject: fix my cast and put it into a separate function --- .gitignore | 3 +++ .../Common/UI/UIScene_SkinSelectMenu.cpp | 27 ++++++++++------------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 86c4ba55..788c5390 100644 --- a/.gitignore +++ b/.gitignore @@ -418,3 +418,6 @@ Minecraft.World/x64/ Minecraft.World/x64_Debug/ Minecraft.World/Debug/ Minecraft.World/Release/ +Minecraft.World/x64_Release/Minecraft.World.vcxproj.FileListAbsolute.txt +Minecraft.World/x64_Release/Minecraft.World.lib +Minecraft.World/x64_Release/Minecraft.World.lib.recipe diff --git a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp index bce5e34e..33f41994 100644 --- a/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_SkinSelectMenu.cpp @@ -1242,6 +1242,15 @@ void UIScene_SkinSelectMenu::handlePackIndexChanged() updatePackDisplay(); } +std::wstring fakeWideToRealWide(const wchar_t* original) +{ + const char* name = reinterpret_cast(original); + int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); + std::wstring wName(len, 0); + MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); + return wName.c_str(); +} + void UIScene_SkinSelectMenu::updatePackDisplay() { m_currentPackCount = app.m_dlcManager.getPackCount(DLCManager::e_DLCType_Skin) + SKIN_SELECT_MAX_DEFAULTS; @@ -1250,11 +1259,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(m_packIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = static_cast(thisPack->getName().c_str()); - int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); - std::wstring wName(len, 0); - MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); - setCentreLabel(wName.c_str()); + setCentreLabel(fakeWideToRealWide(thisPack->getName().c_str())); //setCentreLabel(thisPack->getName().c_str()); } else @@ -1275,11 +1280,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(nextPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = static_cast(thisPack->getName().c_str()); - int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); - std::wstring wName(len, 0); - MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); - setRightLabel(wName.c_str()); + setRightLabel(fakeWideToRealWide(thisPack->getName().c_str())); //setRightLabel(thisPack->getName().c_str()); } else @@ -1300,11 +1301,7 @@ void UIScene_SkinSelectMenu::updatePackDisplay() { DLCPack *thisPack = app.m_dlcManager.getPack(previousPackIndex - SKIN_SELECT_MAX_DEFAULTS, DLCManager::e_DLCType_Skin); // Fix the incorrect string type on title to display correctly - const char* name = static_cast(thisPack->getName().c_str()); - int len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0); - std::wstring wName(len, 0); - MultiByteToWideChar(CP_UTF8, 0, name, -1, &wName[0], len); - setLeftLabel(wName.c_str()); + setLeftLabel(fakeWideToRealWide(thisPack->getName().c_str())); //setLeftLabel(thisPack->getName().c_str()); } else -- cgit v1.2.3 From 8c79598b0166dafc96e48d759a6be9ef0c9bb3db Mon Sep 17 00:00:00 2001 From: rtm516 Date: Sun, 1 Mar 2026 19:32:26 +0000 Subject: Remove GameHDD save data and update .gitignore --- .gitignore | 9 +++++---- .../Windows64/GameHDD/20140401093851/saveData.ms | Bin 5282705 -> 0 bytes 2 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 Minecraft.Client/Windows64/GameHDD/20140401093851/saveData.ms diff --git a/.gitignore b/.gitignore index 788c5390..e24dba26 100644 --- a/.gitignore +++ b/.gitignore @@ -413,11 +413,12 @@ Minecraft.Client/Windows64/GameHDD/ # Intermediate build files (per-project) Minecraft.Client/x64/ Minecraft.Client/Debug/ +Minecraft.Client/x64_Debug/ Minecraft.Client/Release/ +Minecraft.Client/x64_Release/ + Minecraft.World/x64/ -Minecraft.World/x64_Debug/ Minecraft.World/Debug/ +Minecraft.World/x64_Debug/ Minecraft.World/Release/ -Minecraft.World/x64_Release/Minecraft.World.vcxproj.FileListAbsolute.txt -Minecraft.World/x64_Release/Minecraft.World.lib -Minecraft.World/x64_Release/Minecraft.World.lib.recipe +Minecraft.World/x64_Release/ diff --git a/Minecraft.Client/Windows64/GameHDD/20140401093851/saveData.ms b/Minecraft.Client/Windows64/GameHDD/20140401093851/saveData.ms deleted file mode 100644 index 939d5139..00000000 Binary files a/Minecraft.Client/Windows64/GameHDD/20140401093851/saveData.ms and /dev/null differ -- cgit v1.2.3 From 9691561693c3171262a9ec9a0e4e8663949c3fa0 Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 14:33:30 -0500 Subject: Remove need for Durango folder --- Minecraft.Client/Common/Audio/SoundEngine.cpp | 2 +- Minecraft.Client/Minecraft.Client.vcxproj | 7 ++++--- Minecraft.Client/Minecraft.Client.vcxproj.filters | 3 --- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Minecraft.Client/Common/Audio/SoundEngine.cpp b/Minecraft.Client/Common/Audio/SoundEngine.cpp index 4eaf7df7..1906b1aa 100644 --- a/Minecraft.Client/Common/Audio/SoundEngine.cpp +++ b/Minecraft.Client/Common/Audio/SoundEngine.cpp @@ -56,7 +56,7 @@ void SoundEngine::playMusicTick() {}; #else #ifdef _WINDOWS64 -char SoundEngine::m_szSoundPath[]={"Durango\\Sound\\"}; +char SoundEngine::m_szSoundPath[]={"Windows64Media\\Sound\\"}; char SoundEngine::m_szMusicPath[]={"music\\"}; char SoundEngine::m_szRedistName[]={"redist64"}; #elif defined _DURANGO diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index a6aeac2e..5de7c839 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1441,13 +1441,14 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU Copying sound assets to output directory - xcopy /q /y /i /s /e "$(ProjectDir)Durango\Sound" "$(OutDir)Durango\Sound" -xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" + xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" -xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" +xcopy /q /y /i /s /e "$(ProjectDir)DurangoMedia" "$(OutDir)Windows64Media" +xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" $(ProjectDir)xbox\xex-dev.xml diff --git a/Minecraft.Client/Minecraft.Client.vcxproj.filters b/Minecraft.Client/Minecraft.Client.vcxproj.filters index 7731385c..451dec44 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj.filters +++ b/Minecraft.Client/Minecraft.Client.vcxproj.filters @@ -6014,9 +6014,6 @@ PS3\SPUObjFiles\ContentPackage - - - -- cgit v1.2.3 From 8048c793ed02a78c1c822f31493613ab38ec8424 Mon Sep 17 00:00:00 2001 From: Ryan K Date: Sun, 1 Mar 2026 14:54:15 -0500 Subject: Crafting menu LB RB KBM fix --- Minecraft.Client/Common/UI/UIController.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Minecraft.Client/Common/UI/UIController.cpp b/Minecraft.Client/Common/UI/UIController.cpp index 8c336088..eb33b6b3 100644 --- a/Minecraft.Client/Common/UI/UIController.cpp +++ b/Minecraft.Client/Common/UI/UIController.cpp @@ -935,6 +935,8 @@ void UIController::handleKeyPress(unsigned int iPad, unsigned int key) case ACTION_MENU_CANCEL: kbDown = KMInput.IsKeyDown(VK_ESCAPE); kbPressed = KMInput.IsKeyPressed(VK_ESCAPE); kbReleased = KMInput.IsKeyReleased(VK_ESCAPE); break; case ACTION_MENU_B: kbDown = KMInput.IsKeyDown(VK_ESCAPE); kbPressed = KMInput.IsKeyPressed(VK_ESCAPE); kbReleased = KMInput.IsKeyReleased(VK_ESCAPE); break; case ACTION_MENU_PAUSEMENU: kbDown = KMInput.IsKeyDown(VK_ESCAPE); kbPressed = KMInput.IsKeyPressed(VK_ESCAPE); kbReleased = KMInput.IsKeyReleased(VK_ESCAPE); break; + case ACTION_MENU_LEFT_SCROLL: kbDown = KMInput.IsKeyDown('Q'); kbPressed = KMInput.IsKeyPressed('Q'); kbReleased = KMInput.IsKeyReleased('Q'); break; + case ACTION_MENU_RIGHT_SCROLL: kbDown = KMInput.IsKeyDown('E'); kbPressed = KMInput.IsKeyPressed('E'); kbReleased = KMInput.IsKeyReleased('E'); break; } pressed = pressed || kbPressed; released = released || kbReleased; -- cgit v1.2.3 From 47924e86fdff70e4da451e404e2f4dd712ff77d6 Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:18 +0100 Subject: Rename bug report template to remove emoji --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 7f3c2033..a1ba3073 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,4 +1,4 @@ -name: "🐛 Bug Report" +name: "Bug Report" description: "Report a bug to help us improve MinecraftConsoles" title: "[Bug]: " labels: ["bug"] -- cgit v1.2.3 From dc1e90fdc0654c22a2d3e2b3777ca5e2f5e0cfcf Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:42 +0100 Subject: Removed emoji from feature request name for consistency. --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 39e0b223..9cf309d5 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,5 +1,5 @@ --- -name: 🛠️ Feature Request +name: Feature Request description: Suggest an idea to help us improve MinecraftConsoles title: "[Feature]: " labels: -- cgit v1.2.3 From c48120dd3533e795cd541e4b3e4af1c518eb55d6 Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:55:00 +0100 Subject: Remove heart emoji from feature request template --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 9cf309d5..20a1aa73 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -9,7 +9,7 @@ body: - type: markdown attributes: value: | - **Thanks :heart: for taking the time to fill out this feature request report!** + **Thanks for taking the time to fill out this feature request report!** We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - type: textarea -- cgit v1.2.3 From d1e8418a776919bc45abf0dc617bb7d2cc8c8e70 Mon Sep 17 00:00:00 2001 From: Izan Date: Sun, 1 Mar 2026 21:00:40 +0100 Subject: Increase GDRAW_D3D11_RESOURCE_rendertarget limit from 32 MB to 64 MB to prevent allocation warnings at high resolutions --- Minecraft.Client/Windows64/Windows64_UIController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Windows64/Windows64_UIController.cpp b/Minecraft.Client/Windows64/Windows64_UIController.cpp index f4e9a9fc..10ae20af 100644 --- a/Minecraft.Client/Windows64/Windows64_UIController.cpp +++ b/Minecraft.Client/Windows64/Windows64_UIController.cpp @@ -50,7 +50,7 @@ void ConsoleUIController::init(ID3D11Device *dev, ID3D11DeviceContext *ctx, ID3D really big so if you substitute a different file it should work. */ gdraw_D3D11_SetResourceLimits(GDRAW_D3D11_RESOURCE_vertexbuffer, 5000, 16 * 1024 * 1024); gdraw_D3D11_SetResourceLimits(GDRAW_D3D11_RESOURCE_texture , 5000, 128 * 1024 * 1024); - gdraw_D3D11_SetResourceLimits(GDRAW_D3D11_RESOURCE_rendertarget, 10, 32 * 1024 * 1024); + gdraw_D3D11_SetResourceLimits(GDRAW_D3D11_RESOURCE_rendertarget, 10, 64 * 1024 * 1024); /* GDraw is all set, so we'll point Iggy at it. */ IggySetGDraw(gdraw_funcs); -- cgit v1.2.3 From f580a6a603b79ad9c308ba08b8c1af6102de0c32 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 03:02:18 +0700 Subject: Remove the word `template` from PR template Looks like people don't change this field so the word `template` is not needed here. --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c1108a81..0dfcc8e2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,4 @@ -# Pull Request Template +# Pull Request ## Description Briefly describe the changes this PR introduces. -- cgit v1.2.3 From 4b7a97f904de111e8b5b274688f8fb794410cb0e Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 15:06:39 -0500 Subject: Update Minecraft.Client.vcxproj --- Minecraft.Client/Minecraft.Client.vcxproj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index 5de7c839..11f6753e 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1440,7 +1440,7 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CUfalse - Copying sound assets to output directory + Copying game assets to output directory xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" @@ -1448,7 +1448,8 @@ xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" xcopy /q /y /i /s /e "$(ProjectDir)DurangoMedia" "$(OutDir)Windows64Media" -xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" +xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" +mkdir "$(OutDir)Windows64\GameHDD" 2>nul $(ProjectDir)xbox\xex-dev.xml -- cgit v1.2.3 From 55a86b8dc3e8b541b7fbea31ab6056ed179c03b1 Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 15:12:52 -0500 Subject: fix my idiocrisy --- Minecraft.Client/Minecraft.Client.vcxproj | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index 11f6753e..5e448ab6 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1441,15 +1441,24 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU Copying game assets to output directory - xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" -xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" -xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" -xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" -xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" -xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" -xcopy /q /y /i /s /e "$(ProjectDir)DurangoMedia" "$(OutDir)Windows64Media" -xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" -mkdir "$(OutDir)Windows64\GameHDD" 2>nul + mkdir "$(OutDir)music" 2>nul +mkdir "$(OutDir)Windows64\GameHDD" 2>nul +mkdir "$(OutDir)Common\Media" 2>nul +mkdir "$(OutDir)Common\res" 2>nul +mkdir "$(OutDir)Common\Trial" 2>nul +mkdir "$(OutDir)Common\Tutorial" 2>nul +mkdir "$(OutDir)Windows64Media" 2>nul + +xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)DurangoMedia" "$(OutDir)Windows64Media" || exit /b 0 +xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" || exit /b 0 + +exit /b 0 $(ProjectDir)xbox\xex-dev.xml -- cgit v1.2.3 From e31d31f01894e5c737ae80e8ad49f2bc1d4b57dc Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 21:29:10 +0100 Subject: Add double-tap sprint and mouse toggle Update controls in README: expand Sprint entry to include "Double-tap W" as an alternative to holding Ctrl, and add a new "Toggle Mouse Capture" binding (Left Alt) for debugging. Documentation-only change to clarify input options. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 76b0afe1..90976e95 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,14 @@ This project contains the source code of Minecraft Legacy Console Edition v1.3.0 - **Movement**: `W` `A` `S` `D` - **Jump / Fly (Up)**: `Space` - **Sneak / Fly (Down)**: `Shift` (Hold) -- **Sprint**: `Ctrl` (Hold) +- **Sprint**: `Ctrl` (Hold) or Double-tap `W` - **Inventory**: `E` - **Drop Item**: `Q` - **Crafting**: `C` - **Toggle View (FPS/TPS)**: `F5` - **Fullscreen**: `F11` - **Pause Menu**: `Esc` +- **Toggle Mouse Capture**: `Left Alt` (for debugging) - **Attack / Destroy**: `Left Click` - **Use / Place**: `Right Click` - **Select Item**: `Mouse Wheel` or keys `1` to `9` -- cgit v1.2.3 From 1f90b1ab44e053bf37365b2caa54b64889147600 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Sun, 1 Mar 2026 14:32:42 -0600 Subject: Add missing DLC and Sounds to Windows64Media --- .../DLC/Battle And Beasts 2/BattleAndBeasts2.pck | Bin 0 -> 66877 bytes .../DLC/Battle And Beasts/BattleAndBeasts.pck | Bin 0 -> 59732 bytes .../DLC/Candy Texture Pack/Data/media.arc | Bin 13288044 -> 14520184 bytes .../DLC/Candy Texture Pack/Data/x16Data.pck | Bin 869742 -> 869992 bytes .../DLC/Candy Texture Pack/TexturePack.pck | Bin 121574 -> 120537 bytes .../DLC/Cartoon Texture Pack/Data/media.arc | Bin 0 -> 9446383 bytes .../DLC/Cartoon Texture Pack/Data/x32Data.pck | Bin 0 -> 1248634 bytes .../DLC/Cartoon Texture Pack/TexturePack.pck | Bin 0 -> 103803 bytes .../DLC/City Texture Pack/Data/media.arc | Bin 12059271 -> 11744500 bytes .../DLC/City Texture Pack/Data/x32Data.pck | Bin 2636984 -> 2636954 bytes .../DLC/City Texture Pack/TexturePack.pck | Bin 138062 -> 134127 bytes .../Doctor Who Skins Volume I/SkinPackDrWho.pck | Bin 0 -> 170705 bytes .../DLC/Fantasy Texture Pack/Data/media.arc | Bin 15030674 -> 11803365 bytes .../DLC/Fantasy Texture Pack/Data/x32Data.pck | Bin 2526633 -> 2529576 bytes .../DLC/Fantasy Texture Pack/TexturePack.pck | Bin 145481 -> 144457 bytes .../DLC/Festive Skin Pack/SkinsFestive.pck | Bin 0 -> 233036 bytes .../DLC/Halloween Texture Pack/Data/media.arc | Bin 13377816 -> 7783553 bytes .../DLC/Halloween Texture Pack/Data/x16Data.pck | Bin 788709 -> 786598 bytes .../DLC/Halloween Texture Pack/TexturePack.pck | Bin 101212 -> 101644 bytes .../DLC/Halo/Data/Action Figure Hands.binka | Bin 0 -> 2031650 bytes .../DLC/Halo/Data/An End of Dying.binka | Bin 0 -> 2883778 bytes .../DLC/Halo/Data/Cairo Suite 2.binka | Bin 0 -> 2737338 bytes .../DLC/Halo/Data/Cloaked in Blackness.binka | Bin 0 -> 4414104 bytes .../DLC/Halo/Data/Delta Halo Suite.binka | Bin 0 -> 4662490 bytes .../DLC/Halo/Data/Dewy Decimate.binka | Bin 0 -> 4510584 bytes .../Windows64Media/DLC/Halo/Data/Earth City.binka | Bin 0 -> 3189298 bytes .../Windows64Media/DLC/Halo/Data/Finale 1.binka | Bin 0 -> 1311164 bytes .../DLC/Halo/Data/Fingerprints Are Broken.binka | Bin 0 -> 2423084 bytes .../Windows64Media/DLC/Halo/Data/First Step.binka | Bin 0 -> 2532442 bytes .../DLC/Halo/Data/Flip and Sizzle.binka | Bin 0 -> 2356444 bytes .../Windows64Media/DLC/Halo/Data/Flollo.binka | Bin 0 -> 1769340 bytes .../Windows64Media/DLC/Halo/Data/GameRules.grf | Bin 0 -> 459 bytes .../Windows64Media/DLC/Halo/Data/HALO M02.binka | Bin 0 -> 790700 bytes .../DLC/Halo/Data/High Charity Suite 1.binka | Bin 0 -> 1609158 bytes .../Data/Insignificantia (All Sloppy-No Joe).binka | Bin 0 -> 3170960 bytes .../Windows64Media/DLC/Halo/Data/Intimate.binka | Bin 0 -> 629852 bytes .../DLC/Halo/Data/Money or Meteors.binka | Bin 0 -> 2366176 bytes .../DLC/Halo/Data/Night Dreams.binka | Bin 0 -> 2705926 bytes .../DLC/Halo/Data/Opening Suite 2.binka | Bin 0 -> 1530340 bytes .../Windows64Media/DLC/Halo/Data/Quiet Giant.binka | Bin 0 -> 3441502 bytes .../DLC/Halo/Data/Rising Legacy.binka | Bin 0 -> 2657756 bytes .../DLC/Halo/Data/Sacred Icon Suite 1.binka | Bin 0 -> 3098740 bytes .../DLC/Halo/Data/Spirit of Fire.binka | Bin 0 -> 1530590 bytes .../DLC/Halo/Data/Still, Moving.binka | Bin 0 -> 1881578 bytes .../Windows64Media/DLC/Halo/Data/Suite Fall.binka | Bin 0 -> 3690264 bytes .../Windows64Media/DLC/Halo/Data/Survive.binka | Bin 0 -> 3048346 bytes .../DLC/Halo/Data/The Big Guns.binka | Bin 0 -> 2262956 bytes .../DLC/Halo/Data/Truth And Reconciliation.binka | Bin 0 -> 5117170 bytes .../DLC/Halo/Data/Wolverines Reborn.binka | Bin 0 -> 2792374 bytes .../Halo/Data/Work Burns and Runaway Grunts.binka | Bin 0 -> 2254088 bytes .../Windows64Media/DLC/Halo/Data/halo.mcs | Bin 0 -> 10031472 bytes .../Windows64Media/DLC/Halo/Data/media.arc | Bin 0 -> 9722892 bytes .../Windows64Media/DLC/Halo/Data/x16Data.pck | Bin 0 -> 967988 bytes .../Windows64Media/DLC/Halo/TexturePack.pck | Bin 0 -> 217553 bytes .../Marvel Avengers/SkinPackMarvelAvengers1.pck | Bin 0 -> 73017 bytes .../Marvel Guardians Of The Galaxy/SkinPackGOG.pck | Bin 0 -> 64145 bytes .../Marvel Spider-Man/SkinPackMarvelSpiderman.pck | Bin 0 -> 68169 bytes .../Data/01-The Fate of the Galaxy.binka | Bin 0 -> 855934 bytes .../DLC/Mass Effect/Data/02-Leaving Earth.binka | Bin 0 -> 1408694 bytes .../DLC/Mass Effect/Data/03-Mars.binka | Bin 0 -> 4700158 bytes .../DLC/Mass Effect/Data/04-A Cerberus Agent.binka | Bin 0 -> 1781708 bytes .../Mass Effect/Data/05-The View of Palaven.binka | Bin 0 -> 3514046 bytes .../Data/06-A Future for the Krogan.binka | Bin 0 -> 3076508 bytes .../DLC/Mass Effect/Data/07-Surkesh.binka | Bin 0 -> 2486460 bytes .../DLC/Mass Effect/Data/08-The Ardat Yakshi.binka | Bin 0 -> 2478440 bytes .../DLC/Mass Effect/Data/09-Rannoch.binka | Bin 0 -> 3168520 bytes .../DLC/Mass Effect/Data/10-I'm Sorry.binka | Bin 0 -> 2435808 bytes .../Mass Effect/Data/11-The Cerberus Plot.binka | Bin 0 -> 3705508 bytes .../DLC/Mass Effect/Data/12-The Scientists.binka | Bin 0 -> 2981462 bytes .../DLC/Mass Effect/Data/13-Aralakh Company.binka | Bin 0 -> 2861598 bytes .../DLC/Mass Effect/Data/14-Prothean Beacon.binka | Bin 0 -> 2490984 bytes .../DLC/Mass Effect/Data/15-Defeat.binka | Bin 0 -> 2573282 bytes .../DLC/Mass Effect/Data/16-Reaper Chase.binka | Bin 0 -> 2242810 bytes .../Data/17-Stand Strong, Stand Together.binka | Bin 0 -> 1706384 bytes .../Data/18-I Was Lost Without You.binka | Bin 0 -> 1421460 bytes .../Mass Effect/Data/19-The Fleets Arrive.binka | Bin 0 -> 1701508 bytes .../Data/20-We Face Our Enemy Together.binka | Bin 0 -> 1386464 bytes .../DLC/Mass Effect/Data/21-I'm Proud Of You.binka | Bin 0 -> 849274 bytes .../Data/22-An End, Once and For All.binka | Bin 0 -> 1395928 bytes .../DLC/Mass Effect/Data/GameRules.grf | Bin 0 -> 294 bytes .../DLC/Mass Effect/Data/masseffect.mcs | Bin 0 -> 3586274 bytes .../Windows64Media/DLC/Mass Effect/Data/media.arc | Bin 0 -> 10191921 bytes .../DLC/Mass Effect/Data/x16Data.pck | Bin 0 -> 733891 bytes .../Windows64Media/DLC/Mass Effect/TexturePack.pck | Bin 0 -> 176514 bytes .../DLC/Natural Texture Pack/Data/media.arc | Bin 11791967 -> 11048730 bytes .../DLC/Natural Texture Pack/Data/x32Data.pck | Bin 2894225 -> 2892274 bytes .../DLC/Natural Texture Pack/TexturePack.pck | Bin 154077 -> 153119 bytes .../DLC/Plastic Texture Pack/Data/media.arc | Bin 10341198 -> 8317574 bytes .../DLC/Plastic Texture Pack/Data/x16Data.pck | Bin 568984 -> 567845 bytes .../DLC/Plastic Texture Pack/TexturePack.pck | Bin 84719 -> 81062 bytes .../Windows64Media/DLC/Skin Pack 1/Skins1.pck | Bin 0 -> 266700 bytes .../Windows64Media/DLC/Skin Pack 2/Skins2.pck | Bin 0 -> 184353 bytes .../Windows64Media/DLC/Skin Pack 3/Skins3.pck | Bin 0 -> 64147 bytes .../Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck | Bin 0 -> 116441 bytes .../Windows64Media/DLC/Skin Pack 5/SkinPack5.pck | Bin 0 -> 74631 bytes .../Windows64Media/DLC/Skin Pack 6/SkinPack6.pck | Bin 0 -> 98134 bytes .../DLC/Skyrim/Data/01 (A) Dragonborn.binka | Bin 0 -> 3982824 bytes .../DLC/Skyrim/Data/02 (A) Awake.binka | Bin 0 -> 977184 bytes .../Skyrim/Data/03 (A) From Past To Present.binka | Bin 0 -> 3269410 bytes .../DLC/Skyrim/Data/06 (A) The City Gates.binka | Bin 0 -> 2782402 bytes .../DLC/Skyrim/Data/08 (A) Dragonsreach.binka | Bin 0 -> 1435524 bytes .../DLC/Skyrim/Data/09 (A) Tooth and Claw.binka | Bin 0 -> 1118430 bytes .../DLC/Skyrim/Data/13 (A) Distant Horizons.binka | Bin 0 -> 2542020 bytes .../DLC/Skyrim/Data/14 (A) Dawn.binka | Bin 0 -> 2320560 bytes .../Skyrim/Data/15 (A) The Jerall Mountains.binka | Bin 0 -> 2120848 bytes .../DLC/Skyrim/Data/17 (A) Secunda.binka | Bin 0 -> 958574 bytes .../DLC/Skyrim/Data/19 (B) Frostfall.binka | Bin 0 -> 2109820 bytes .../DLC/Skyrim/Data/21 (B) Into Darkness.binka | Bin 0 -> 885238 bytes .../DLC/Skyrim/Data/23 (B) Unbound.binka | Bin 0 -> 993118 bytes .../DLC/Skyrim/Data/24 (B) Far Horizons.binka | Bin 0 -> 3785320 bytes .../Data/27 (B) The Streets of Whiterun.binka | Bin 0 -> 3130818 bytes .../DLC/Skyrim/Data/29 (B) The White River.binka | Bin 0 -> 1929148 bytes .../DLC/Skyrim/Data/31 (B) Standing Stones.binka | Bin 0 -> 4365996 bytes .../DLC/Skyrim/Data/33 (B) Tundra.binka | Bin 0 -> 2245850 bytes .../DLC/Skyrim/Data/34 (B) Journey's End.binka | Bin 0 -> 2663988 bytes .../Skyrim/Data/39 (C) Shadows and Echoes.binka | Bin 0 -> 1154572 bytes .../DLC/Skyrim/Data/41 (C) Aurora.binka | Bin 0 -> 4443128 bytes .../Skyrim/Data/43 (C) Towers and Shadows.binka | Bin 0 -> 1159944 bytes .../DLC/Skyrim/Data/45 (C) Solitude.binka | Bin 0 -> 1514670 bytes .../DLC/Skyrim/Data/46 (C) Watch the Skies.binka | Bin 0 -> 2362688 bytes .../Skyrim/Data/49 (C) Death in the Darkness.binka | Bin 0 -> 879654 bytes .../DLC/Skyrim/Data/52 (C) Wind Guide You.binka | Bin 0 -> 5626580 bytes .../Windows64Media/DLC/Skyrim/Data/GameRules.grf | Bin 0 -> 461 bytes .../Windows64Media/DLC/Skyrim/Data/media.arc | Bin 0 -> 3738671 bytes .../Windows64Media/DLC/Skyrim/Data/skyrim.mcs | Bin 0 -> 10509553 bytes .../Windows64Media/DLC/Skyrim/Data/x16Data.pck | Bin 0 -> 996897 bytes .../Windows64Media/DLC/Skyrim/TexturePack.pck | Bin 0 -> 181667 bytes .../Windows64Media/Sound/Minecraft.msscmp | Bin 0 -> 12420314 bytes 128 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc create mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck create mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck create mode 100644 Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp diff --git a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck new file mode 100644 index 00000000..6f042cca Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck new file mode 100644 index 00000000..f3741222 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc index 2882c976..aa6bc459 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck index a282f83a..db0222c4 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck index c3f3f592..f3b38823 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc new file mode 100644 index 00000000..dd00c321 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck new file mode 100644 index 00000000..3752e75a Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck new file mode 100644 index 00000000..4294d023 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc index 9c485c87..1482dde0 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck index 0d9f13c9..61161ba4 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck index 87725da9..a0b25725 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck b/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck new file mode 100644 index 00000000..7cad273b Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc index e1abb4dd..438a9d36 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck index 70204531..64618ef7 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck index ee7f6d2b..380dbb03 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck b/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck new file mode 100644 index 00000000..c2ccd75e Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc index b62332da..a0c2a66e 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck index 6d1f4da8..719d0e28 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck index 5a5f91b5..561c831c 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka new file mode 100644 index 00000000..eaab0090 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka new file mode 100644 index 00000000..16700bf3 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka new file mode 100644 index 00000000..76151181 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka new file mode 100644 index 00000000..8cac6c56 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka new file mode 100644 index 00000000..2d10f590 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka new file mode 100644 index 00000000..42ff1210 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka new file mode 100644 index 00000000..05c8e2a1 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka new file mode 100644 index 00000000..87cce227 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka new file mode 100644 index 00000000..2f5fb05f Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka new file mode 100644 index 00000000..ef16e794 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka new file mode 100644 index 00000000..5739faba Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka new file mode 100644 index 00000000..e8af1cba Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf new file mode 100644 index 00000000..c4d59ff1 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka new file mode 100644 index 00000000..36944526 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka new file mode 100644 index 00000000..6aaad943 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka new file mode 100644 index 00000000..6e2f8592 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka new file mode 100644 index 00000000..43f4cb78 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka new file mode 100644 index 00000000..a7c1b1dc Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka new file mode 100644 index 00000000..83d68601 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka new file mode 100644 index 00000000..ed1bbeee Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka new file mode 100644 index 00000000..6a1d1dc4 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka new file mode 100644 index 00000000..5c141fea Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka new file mode 100644 index 00000000..5c6ff13c Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka new file mode 100644 index 00000000..675e5439 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka new file mode 100644 index 00000000..cdb86591 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka new file mode 100644 index 00000000..a10bfa76 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka new file mode 100644 index 00000000..52bf6ccf Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka new file mode 100644 index 00000000..5ebcad3b Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka new file mode 100644 index 00000000..ee56d9e1 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka new file mode 100644 index 00000000..03b653a7 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka new file mode 100644 index 00000000..7303c8b2 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs b/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs new file mode 100644 index 00000000..159aa626 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc new file mode 100644 index 00000000..7cc155d4 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck new file mode 100644 index 00000000..eeea0eaa Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck new file mode 100644 index 00000000..423ac2d8 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck new file mode 100644 index 00000000..5f89ecd5 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck new file mode 100644 index 00000000..f0eb1f38 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck new file mode 100644 index 00000000..584cc04d Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka new file mode 100644 index 00000000..4462b69f Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka new file mode 100644 index 00000000..33624ece Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka new file mode 100644 index 00000000..678af97d Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka new file mode 100644 index 00000000..e9f3ea99 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka new file mode 100644 index 00000000..672ed958 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka new file mode 100644 index 00000000..8faf90d9 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka new file mode 100644 index 00000000..b16dc965 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka new file mode 100644 index 00000000..54c17580 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka new file mode 100644 index 00000000..766375c9 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka new file mode 100644 index 00000000..846d2360 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka new file mode 100644 index 00000000..31877f58 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka new file mode 100644 index 00000000..92dec6be Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka new file mode 100644 index 00000000..8a615db7 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka new file mode 100644 index 00000000..e1a8a36a Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka new file mode 100644 index 00000000..e955dc2c Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka new file mode 100644 index 00000000..237bd6a4 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka new file mode 100644 index 00000000..03afa022 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka new file mode 100644 index 00000000..f2cfe2f5 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka new file mode 100644 index 00000000..75823cc2 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka new file mode 100644 index 00000000..05aba0e2 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka new file mode 100644 index 00000000..c44e3595 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka new file mode 100644 index 00000000..24d674b7 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf new file mode 100644 index 00000000..33449e04 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs new file mode 100644 index 00000000..e2a3fb41 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc new file mode 100644 index 00000000..2721343d Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck new file mode 100644 index 00000000..1f03ff10 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck new file mode 100644 index 00000000..020d763a Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc index 873323be..b08a1006 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck index 5bc5b54a..cafb05e0 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck index 54d63972..6c9430c4 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc index 3a7df669..7aa5aea5 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck index 57b913bc..979f75c8 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck index 2f8e46f6..72a03983 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck new file mode 100644 index 00000000..fca0a9a4 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck new file mode 100644 index 00000000..04cd7e6b Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck new file mode 100644 index 00000000..fac17c2f Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck new file mode 100644 index 00000000..435fb41d Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck new file mode 100644 index 00000000..4cda4af5 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck new file mode 100644 index 00000000..03351d9c Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka new file mode 100644 index 00000000..0547c070 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka new file mode 100644 index 00000000..2d1f4699 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka new file mode 100644 index 00000000..fd7de9ab Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka new file mode 100644 index 00000000..42f9e859 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka new file mode 100644 index 00000000..fa65c6d2 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka new file mode 100644 index 00000000..0b12cad5 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka new file mode 100644 index 00000000..f0123afc Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka new file mode 100644 index 00000000..bc7b0604 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka new file mode 100644 index 00000000..a7ace7e7 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka new file mode 100644 index 00000000..6c0a62f1 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka new file mode 100644 index 00000000..78458557 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka new file mode 100644 index 00000000..b70a08e6 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka new file mode 100644 index 00000000..0e2f1004 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka new file mode 100644 index 00000000..6d71f92f Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka new file mode 100644 index 00000000..c8055493 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka new file mode 100644 index 00000000..540e49d5 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka new file mode 100644 index 00000000..039a7b0d Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka new file mode 100644 index 00000000..b8b460d4 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka new file mode 100644 index 00000000..c20e8511 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka new file mode 100644 index 00000000..5ad13e79 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka new file mode 100644 index 00000000..eb8b5c94 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka new file mode 100644 index 00000000..1ff1d4bd Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka new file mode 100644 index 00000000..e9730ddb Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka new file mode 100644 index 00000000..e59eee44 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka new file mode 100644 index 00000000..71ea7daa Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka new file mode 100644 index 00000000..9adb25be Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf new file mode 100644 index 00000000..e59b4efd Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc new file mode 100644 index 00000000..28f02a37 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs new file mode 100644 index 00000000..1a561f71 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck new file mode 100644 index 00000000..66a1be36 Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck new file mode 100644 index 00000000..c44c03ca Binary files /dev/null and b/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp b/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp new file mode 100644 index 00000000..ba22b635 Binary files /dev/null and b/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp differ -- cgit v1.2.3 From b0facaeb9c1c2ddc05f9ba0d4f20d7d3f2019919 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 03:44:23 +0700 Subject: Revert "Add missing DLC and Sounds to Windows64Media" --- .../DLC/Battle And Beasts 2/BattleAndBeasts2.pck | Bin 66877 -> 0 bytes .../DLC/Battle And Beasts/BattleAndBeasts.pck | Bin 59732 -> 0 bytes .../DLC/Candy Texture Pack/Data/media.arc | Bin 14520184 -> 13288044 bytes .../DLC/Candy Texture Pack/Data/x16Data.pck | Bin 869992 -> 869742 bytes .../DLC/Candy Texture Pack/TexturePack.pck | Bin 120537 -> 121574 bytes .../DLC/Cartoon Texture Pack/Data/media.arc | Bin 9446383 -> 0 bytes .../DLC/Cartoon Texture Pack/Data/x32Data.pck | Bin 1248634 -> 0 bytes .../DLC/Cartoon Texture Pack/TexturePack.pck | Bin 103803 -> 0 bytes .../DLC/City Texture Pack/Data/media.arc | Bin 11744500 -> 12059271 bytes .../DLC/City Texture Pack/Data/x32Data.pck | Bin 2636954 -> 2636984 bytes .../DLC/City Texture Pack/TexturePack.pck | Bin 134127 -> 138062 bytes .../Doctor Who Skins Volume I/SkinPackDrWho.pck | Bin 170705 -> 0 bytes .../DLC/Fantasy Texture Pack/Data/media.arc | Bin 11803365 -> 15030674 bytes .../DLC/Fantasy Texture Pack/Data/x32Data.pck | Bin 2529576 -> 2526633 bytes .../DLC/Fantasy Texture Pack/TexturePack.pck | Bin 144457 -> 145481 bytes .../DLC/Festive Skin Pack/SkinsFestive.pck | Bin 233036 -> 0 bytes .../DLC/Halloween Texture Pack/Data/media.arc | Bin 7783553 -> 13377816 bytes .../DLC/Halloween Texture Pack/Data/x16Data.pck | Bin 786598 -> 788709 bytes .../DLC/Halloween Texture Pack/TexturePack.pck | Bin 101644 -> 101212 bytes .../DLC/Halo/Data/Action Figure Hands.binka | Bin 2031650 -> 0 bytes .../DLC/Halo/Data/An End of Dying.binka | Bin 2883778 -> 0 bytes .../DLC/Halo/Data/Cairo Suite 2.binka | Bin 2737338 -> 0 bytes .../DLC/Halo/Data/Cloaked in Blackness.binka | Bin 4414104 -> 0 bytes .../DLC/Halo/Data/Delta Halo Suite.binka | Bin 4662490 -> 0 bytes .../DLC/Halo/Data/Dewy Decimate.binka | Bin 4510584 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Earth City.binka | Bin 3189298 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Finale 1.binka | Bin 1311164 -> 0 bytes .../DLC/Halo/Data/Fingerprints Are Broken.binka | Bin 2423084 -> 0 bytes .../Windows64Media/DLC/Halo/Data/First Step.binka | Bin 2532442 -> 0 bytes .../DLC/Halo/Data/Flip and Sizzle.binka | Bin 2356444 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Flollo.binka | Bin 1769340 -> 0 bytes .../Windows64Media/DLC/Halo/Data/GameRules.grf | Bin 459 -> 0 bytes .../Windows64Media/DLC/Halo/Data/HALO M02.binka | Bin 790700 -> 0 bytes .../DLC/Halo/Data/High Charity Suite 1.binka | Bin 1609158 -> 0 bytes .../Data/Insignificantia (All Sloppy-No Joe).binka | Bin 3170960 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Intimate.binka | Bin 629852 -> 0 bytes .../DLC/Halo/Data/Money or Meteors.binka | Bin 2366176 -> 0 bytes .../DLC/Halo/Data/Night Dreams.binka | Bin 2705926 -> 0 bytes .../DLC/Halo/Data/Opening Suite 2.binka | Bin 1530340 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Quiet Giant.binka | Bin 3441502 -> 0 bytes .../DLC/Halo/Data/Rising Legacy.binka | Bin 2657756 -> 0 bytes .../DLC/Halo/Data/Sacred Icon Suite 1.binka | Bin 3098740 -> 0 bytes .../DLC/Halo/Data/Spirit of Fire.binka | Bin 1530590 -> 0 bytes .../DLC/Halo/Data/Still, Moving.binka | Bin 1881578 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Suite Fall.binka | Bin 3690264 -> 0 bytes .../Windows64Media/DLC/Halo/Data/Survive.binka | Bin 3048346 -> 0 bytes .../DLC/Halo/Data/The Big Guns.binka | Bin 2262956 -> 0 bytes .../DLC/Halo/Data/Truth And Reconciliation.binka | Bin 5117170 -> 0 bytes .../DLC/Halo/Data/Wolverines Reborn.binka | Bin 2792374 -> 0 bytes .../Halo/Data/Work Burns and Runaway Grunts.binka | Bin 2254088 -> 0 bytes .../Windows64Media/DLC/Halo/Data/halo.mcs | Bin 10031472 -> 0 bytes .../Windows64Media/DLC/Halo/Data/media.arc | Bin 9722892 -> 0 bytes .../Windows64Media/DLC/Halo/Data/x16Data.pck | Bin 967988 -> 0 bytes .../Windows64Media/DLC/Halo/TexturePack.pck | Bin 217553 -> 0 bytes .../Marvel Avengers/SkinPackMarvelAvengers1.pck | Bin 73017 -> 0 bytes .../Marvel Guardians Of The Galaxy/SkinPackGOG.pck | Bin 64145 -> 0 bytes .../Marvel Spider-Man/SkinPackMarvelSpiderman.pck | Bin 68169 -> 0 bytes .../Data/01-The Fate of the Galaxy.binka | Bin 855934 -> 0 bytes .../DLC/Mass Effect/Data/02-Leaving Earth.binka | Bin 1408694 -> 0 bytes .../DLC/Mass Effect/Data/03-Mars.binka | Bin 4700158 -> 0 bytes .../DLC/Mass Effect/Data/04-A Cerberus Agent.binka | Bin 1781708 -> 0 bytes .../Mass Effect/Data/05-The View of Palaven.binka | Bin 3514046 -> 0 bytes .../Data/06-A Future for the Krogan.binka | Bin 3076508 -> 0 bytes .../DLC/Mass Effect/Data/07-Surkesh.binka | Bin 2486460 -> 0 bytes .../DLC/Mass Effect/Data/08-The Ardat Yakshi.binka | Bin 2478440 -> 0 bytes .../DLC/Mass Effect/Data/09-Rannoch.binka | Bin 3168520 -> 0 bytes .../DLC/Mass Effect/Data/10-I'm Sorry.binka | Bin 2435808 -> 0 bytes .../Mass Effect/Data/11-The Cerberus Plot.binka | Bin 3705508 -> 0 bytes .../DLC/Mass Effect/Data/12-The Scientists.binka | Bin 2981462 -> 0 bytes .../DLC/Mass Effect/Data/13-Aralakh Company.binka | Bin 2861598 -> 0 bytes .../DLC/Mass Effect/Data/14-Prothean Beacon.binka | Bin 2490984 -> 0 bytes .../DLC/Mass Effect/Data/15-Defeat.binka | Bin 2573282 -> 0 bytes .../DLC/Mass Effect/Data/16-Reaper Chase.binka | Bin 2242810 -> 0 bytes .../Data/17-Stand Strong, Stand Together.binka | Bin 1706384 -> 0 bytes .../Data/18-I Was Lost Without You.binka | Bin 1421460 -> 0 bytes .../Mass Effect/Data/19-The Fleets Arrive.binka | Bin 1701508 -> 0 bytes .../Data/20-We Face Our Enemy Together.binka | Bin 1386464 -> 0 bytes .../DLC/Mass Effect/Data/21-I'm Proud Of You.binka | Bin 849274 -> 0 bytes .../Data/22-An End, Once and For All.binka | Bin 1395928 -> 0 bytes .../DLC/Mass Effect/Data/GameRules.grf | Bin 294 -> 0 bytes .../DLC/Mass Effect/Data/masseffect.mcs | Bin 3586274 -> 0 bytes .../Windows64Media/DLC/Mass Effect/Data/media.arc | Bin 10191921 -> 0 bytes .../DLC/Mass Effect/Data/x16Data.pck | Bin 733891 -> 0 bytes .../Windows64Media/DLC/Mass Effect/TexturePack.pck | Bin 176514 -> 0 bytes .../DLC/Natural Texture Pack/Data/media.arc | Bin 11048730 -> 11791967 bytes .../DLC/Natural Texture Pack/Data/x32Data.pck | Bin 2892274 -> 2894225 bytes .../DLC/Natural Texture Pack/TexturePack.pck | Bin 153119 -> 154077 bytes .../DLC/Plastic Texture Pack/Data/media.arc | Bin 8317574 -> 10341198 bytes .../DLC/Plastic Texture Pack/Data/x16Data.pck | Bin 567845 -> 568984 bytes .../DLC/Plastic Texture Pack/TexturePack.pck | Bin 81062 -> 84719 bytes .../Windows64Media/DLC/Skin Pack 1/Skins1.pck | Bin 266700 -> 0 bytes .../Windows64Media/DLC/Skin Pack 2/Skins2.pck | Bin 184353 -> 0 bytes .../Windows64Media/DLC/Skin Pack 3/Skins3.pck | Bin 64147 -> 0 bytes .../Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck | Bin 116441 -> 0 bytes .../Windows64Media/DLC/Skin Pack 5/SkinPack5.pck | Bin 74631 -> 0 bytes .../Windows64Media/DLC/Skin Pack 6/SkinPack6.pck | Bin 98134 -> 0 bytes .../DLC/Skyrim/Data/01 (A) Dragonborn.binka | Bin 3982824 -> 0 bytes .../DLC/Skyrim/Data/02 (A) Awake.binka | Bin 977184 -> 0 bytes .../Skyrim/Data/03 (A) From Past To Present.binka | Bin 3269410 -> 0 bytes .../DLC/Skyrim/Data/06 (A) The City Gates.binka | Bin 2782402 -> 0 bytes .../DLC/Skyrim/Data/08 (A) Dragonsreach.binka | Bin 1435524 -> 0 bytes .../DLC/Skyrim/Data/09 (A) Tooth and Claw.binka | Bin 1118430 -> 0 bytes .../DLC/Skyrim/Data/13 (A) Distant Horizons.binka | Bin 2542020 -> 0 bytes .../DLC/Skyrim/Data/14 (A) Dawn.binka | Bin 2320560 -> 0 bytes .../Skyrim/Data/15 (A) The Jerall Mountains.binka | Bin 2120848 -> 0 bytes .../DLC/Skyrim/Data/17 (A) Secunda.binka | Bin 958574 -> 0 bytes .../DLC/Skyrim/Data/19 (B) Frostfall.binka | Bin 2109820 -> 0 bytes .../DLC/Skyrim/Data/21 (B) Into Darkness.binka | Bin 885238 -> 0 bytes .../DLC/Skyrim/Data/23 (B) Unbound.binka | Bin 993118 -> 0 bytes .../DLC/Skyrim/Data/24 (B) Far Horizons.binka | Bin 3785320 -> 0 bytes .../Data/27 (B) The Streets of Whiterun.binka | Bin 3130818 -> 0 bytes .../DLC/Skyrim/Data/29 (B) The White River.binka | Bin 1929148 -> 0 bytes .../DLC/Skyrim/Data/31 (B) Standing Stones.binka | Bin 4365996 -> 0 bytes .../DLC/Skyrim/Data/33 (B) Tundra.binka | Bin 2245850 -> 0 bytes .../DLC/Skyrim/Data/34 (B) Journey's End.binka | Bin 2663988 -> 0 bytes .../Skyrim/Data/39 (C) Shadows and Echoes.binka | Bin 1154572 -> 0 bytes .../DLC/Skyrim/Data/41 (C) Aurora.binka | Bin 4443128 -> 0 bytes .../Skyrim/Data/43 (C) Towers and Shadows.binka | Bin 1159944 -> 0 bytes .../DLC/Skyrim/Data/45 (C) Solitude.binka | Bin 1514670 -> 0 bytes .../DLC/Skyrim/Data/46 (C) Watch the Skies.binka | Bin 2362688 -> 0 bytes .../Skyrim/Data/49 (C) Death in the Darkness.binka | Bin 879654 -> 0 bytes .../DLC/Skyrim/Data/52 (C) Wind Guide You.binka | Bin 5626580 -> 0 bytes .../Windows64Media/DLC/Skyrim/Data/GameRules.grf | Bin 461 -> 0 bytes .../Windows64Media/DLC/Skyrim/Data/media.arc | Bin 3738671 -> 0 bytes .../Windows64Media/DLC/Skyrim/Data/skyrim.mcs | Bin 10509553 -> 0 bytes .../Windows64Media/DLC/Skyrim/Data/x16Data.pck | Bin 996897 -> 0 bytes .../Windows64Media/DLC/Skyrim/TexturePack.pck | Bin 181667 -> 0 bytes .../Windows64Media/Sound/Minecraft.msscmp | Bin 12420314 -> 0 bytes 128 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc delete mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck delete mode 100644 Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck delete mode 100644 Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp diff --git a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck deleted file mode 100644 index 6f042cca..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts 2/BattleAndBeasts2.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck b/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck deleted file mode 100644 index f3741222..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Battle And Beasts/BattleAndBeasts.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc index aa6bc459..2882c976 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck index db0222c4..a282f83a 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck index f3b38823..c3f3f592 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Candy Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc deleted file mode 100644 index dd00c321..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/media.arc and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck deleted file mode 100644 index 3752e75a..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/Data/x32Data.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck deleted file mode 100644 index 4294d023..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Cartoon Texture Pack/TexturePack.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc index 1482dde0..9c485c87 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck index 61161ba4..0d9f13c9 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck index a0b25725..87725da9 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/City Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck b/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck deleted file mode 100644 index 7cad273b..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Doctor Who Skins Volume I/SkinPackDrWho.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc index 438a9d36..e1abb4dd 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck index 64618ef7..70204531 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck index 380dbb03..ee7f6d2b 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Fantasy Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck b/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck deleted file mode 100644 index c2ccd75e..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Festive Skin Pack/SkinsFestive.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc index a0c2a66e..b62332da 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck index 719d0e28..6d1f4da8 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck index 561c831c..5a5f91b5 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Halloween Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka deleted file mode 100644 index eaab0090..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Action Figure Hands.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka deleted file mode 100644 index 16700bf3..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/An End of Dying.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka deleted file mode 100644 index 76151181..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cairo Suite 2.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka deleted file mode 100644 index 8cac6c56..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Cloaked in Blackness.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka deleted file mode 100644 index 2d10f590..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Delta Halo Suite.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka deleted file mode 100644 index 42ff1210..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Dewy Decimate.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka deleted file mode 100644 index 05c8e2a1..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Earth City.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka deleted file mode 100644 index 87cce227..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Finale 1.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka deleted file mode 100644 index 2f5fb05f..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Fingerprints Are Broken.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka deleted file mode 100644 index ef16e794..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/First Step.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka deleted file mode 100644 index 5739faba..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flip and Sizzle.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka deleted file mode 100644 index e8af1cba..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Flollo.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf deleted file mode 100644 index c4d59ff1..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/GameRules.grf and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka deleted file mode 100644 index 36944526..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/HALO M02.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka deleted file mode 100644 index 6aaad943..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/High Charity Suite 1.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka deleted file mode 100644 index 6e2f8592..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Insignificantia (All Sloppy-No Joe).binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka deleted file mode 100644 index 43f4cb78..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Intimate.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka deleted file mode 100644 index a7c1b1dc..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Money or Meteors.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka deleted file mode 100644 index 83d68601..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Night Dreams.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka deleted file mode 100644 index ed1bbeee..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Opening Suite 2.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka deleted file mode 100644 index 6a1d1dc4..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Quiet Giant.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka deleted file mode 100644 index 5c141fea..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Rising Legacy.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka deleted file mode 100644 index 5c6ff13c..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Sacred Icon Suite 1.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka deleted file mode 100644 index 675e5439..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Spirit of Fire.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka deleted file mode 100644 index cdb86591..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Still, Moving.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka deleted file mode 100644 index a10bfa76..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Suite Fall.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka deleted file mode 100644 index 52bf6ccf..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Survive.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka deleted file mode 100644 index 5ebcad3b..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/The Big Guns.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka deleted file mode 100644 index ee56d9e1..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Truth And Reconciliation.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka deleted file mode 100644 index 03b653a7..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Wolverines Reborn.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka b/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka deleted file mode 100644 index 7303c8b2..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/Work Burns and Runaway Grunts.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs b/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs deleted file mode 100644 index 159aa626..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/halo.mcs and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc deleted file mode 100644 index 7cc155d4..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/media.arc and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck deleted file mode 100644 index eeea0eaa..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/Data/x16Data.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck deleted file mode 100644 index 423ac2d8..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Halo/TexturePack.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck deleted file mode 100644 index 5f89ecd5..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Marvel Avengers/SkinPackMarvelAvengers1.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck deleted file mode 100644 index f0eb1f38..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Marvel Guardians Of The Galaxy/SkinPackGOG.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck b/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck deleted file mode 100644 index 584cc04d..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Marvel Spider-Man/SkinPackMarvelSpiderman.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka deleted file mode 100644 index 4462b69f..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/01-The Fate of the Galaxy.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka deleted file mode 100644 index 33624ece..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/02-Leaving Earth.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka deleted file mode 100644 index 678af97d..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/03-Mars.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka deleted file mode 100644 index e9f3ea99..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/04-A Cerberus Agent.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka deleted file mode 100644 index 672ed958..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/05-The View of Palaven.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka deleted file mode 100644 index 8faf90d9..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/06-A Future for the Krogan.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka deleted file mode 100644 index b16dc965..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/07-Surkesh.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka deleted file mode 100644 index 54c17580..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/08-The Ardat Yakshi.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka deleted file mode 100644 index 766375c9..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/09-Rannoch.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka deleted file mode 100644 index 846d2360..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/10-I'm Sorry.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka deleted file mode 100644 index 31877f58..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/11-The Cerberus Plot.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka deleted file mode 100644 index 92dec6be..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/12-The Scientists.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka deleted file mode 100644 index 8a615db7..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/13-Aralakh Company.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka deleted file mode 100644 index e1a8a36a..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/14-Prothean Beacon.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka deleted file mode 100644 index e955dc2c..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/15-Defeat.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka deleted file mode 100644 index 237bd6a4..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/16-Reaper Chase.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka deleted file mode 100644 index 03afa022..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/17-Stand Strong, Stand Together.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka deleted file mode 100644 index f2cfe2f5..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/18-I Was Lost Without You.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka deleted file mode 100644 index 75823cc2..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/19-The Fleets Arrive.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka deleted file mode 100644 index 05aba0e2..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/20-We Face Our Enemy Together.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka deleted file mode 100644 index c44e3595..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/21-I'm Proud Of You.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka deleted file mode 100644 index 24d674b7..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/22-An End, Once and For All.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf deleted file mode 100644 index 33449e04..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/GameRules.grf and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs deleted file mode 100644 index e2a3fb41..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/masseffect.mcs and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc deleted file mode 100644 index 2721343d..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/media.arc and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck deleted file mode 100644 index 1f03ff10..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/Data/x16Data.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck deleted file mode 100644 index 020d763a..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Mass Effect/TexturePack.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc index b08a1006..873323be 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck index cafb05e0..5bc5b54a 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/Data/x32Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck index 6c9430c4..54d63972 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Natural Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc index 7aa5aea5..3a7df669 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/media.arc differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck index 979f75c8..57b913bc 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/Data/x16Data.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck index 72a03983..2f8e46f6 100644 Binary files a/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck and b/Minecraft.Client/Windows64Media/DLC/Plastic Texture Pack/TexturePack.pck differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck deleted file mode 100644 index fca0a9a4..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 1/Skins1.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck deleted file mode 100644 index 04cd7e6b..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 2/Skins2.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck deleted file mode 100644 index fac17c2f..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 3/Skins3.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck deleted file mode 100644 index 435fb41d..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 4/Skins4_XB1.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck deleted file mode 100644 index 4cda4af5..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 5/SkinPack5.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck b/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck deleted file mode 100644 index 03351d9c..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skin Pack 6/SkinPack6.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka deleted file mode 100644 index 0547c070..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/01 (A) Dragonborn.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka deleted file mode 100644 index 2d1f4699..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/02 (A) Awake.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka deleted file mode 100644 index fd7de9ab..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/03 (A) From Past To Present.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka deleted file mode 100644 index 42f9e859..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/06 (A) The City Gates.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka deleted file mode 100644 index fa65c6d2..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/08 (A) Dragonsreach.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka deleted file mode 100644 index 0b12cad5..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/09 (A) Tooth and Claw.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka deleted file mode 100644 index f0123afc..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/13 (A) Distant Horizons.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka deleted file mode 100644 index bc7b0604..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/14 (A) Dawn.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka deleted file mode 100644 index a7ace7e7..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/15 (A) The Jerall Mountains.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka deleted file mode 100644 index 6c0a62f1..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/17 (A) Secunda.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka deleted file mode 100644 index 78458557..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/19 (B) Frostfall.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka deleted file mode 100644 index b70a08e6..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/21 (B) Into Darkness.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka deleted file mode 100644 index 0e2f1004..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/23 (B) Unbound.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka deleted file mode 100644 index 6d71f92f..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/24 (B) Far Horizons.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka deleted file mode 100644 index c8055493..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/27 (B) The Streets of Whiterun.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka deleted file mode 100644 index 540e49d5..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/29 (B) The White River.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka deleted file mode 100644 index 039a7b0d..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/31 (B) Standing Stones.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka deleted file mode 100644 index b8b460d4..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/33 (B) Tundra.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka deleted file mode 100644 index c20e8511..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/34 (B) Journey's End.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka deleted file mode 100644 index 5ad13e79..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/39 (C) Shadows and Echoes.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka deleted file mode 100644 index eb8b5c94..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/41 (C) Aurora.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka deleted file mode 100644 index 1ff1d4bd..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/43 (C) Towers and Shadows.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka deleted file mode 100644 index e9730ddb..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/45 (C) Solitude.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka deleted file mode 100644 index e59eee44..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/46 (C) Watch the Skies.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka deleted file mode 100644 index 71ea7daa..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/49 (C) Death in the Darkness.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka deleted file mode 100644 index 9adb25be..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/52 (C) Wind Guide You.binka and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf deleted file mode 100644 index e59b4efd..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/GameRules.grf and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc deleted file mode 100644 index 28f02a37..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/media.arc and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs deleted file mode 100644 index 1a561f71..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/skyrim.mcs and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck b/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck deleted file mode 100644 index 66a1be36..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/Data/x16Data.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck b/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck deleted file mode 100644 index c44c03ca..00000000 Binary files a/Minecraft.Client/Windows64Media/DLC/Skyrim/TexturePack.pck and /dev/null differ diff --git a/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp b/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp deleted file mode 100644 index ba22b635..00000000 Binary files a/Minecraft.Client/Windows64Media/Sound/Minecraft.msscmp and /dev/null differ -- cgit v1.2.3 From 180ad193eefffe068b61572b4cf44daa0fc52622 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 03:52:55 +0700 Subject: Revert "Added bug, and feature template for issues" --- .github/ISSUE_TEMPLATE/bug_report.yaml | 72 ----------------------------- .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.yaml | 46 ------------------ 3 files changed, 119 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml deleted file mode 100644 index a1ba3073..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ /dev/null @@ -1,72 +0,0 @@ -name: "Bug Report" -description: "Report a bug to help us improve MinecraftConsoles" -title: "[Bug]: " -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to report a bug!** - Please ensure you are using the latest version of the repository and have followed the build instructions in the README. - - type: textarea - id: description - attributes: - label: Description - description: "A clear and concise description of what the bug is." - placeholder: "Describe what happened..." - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Steps to Reproduce - description: "How can we reproduce this bug?" - placeholder: | - 1. Open MinecraftConsoles.sln - 2. Set configuration to ... - 3. Run the project - 4. Do ... - validations: - required: true - - type: textarea - id: expected-actual - attributes: - label: Expected vs. Actual Behavior - description: "What did you expect to happen, and what actually happened?" - validations: - required: true - - type: dropdown - id: build-config - attributes: - label: Build Configuration - description: "Which configuration were you using?" - options: - - Debug - - Release - validations: - required: true - - type: dropdown - id: target-platform - attributes: - label: Target Platform - description: "Which platform were you targeting?" - options: - - Windows64 - - Other (please specify in context) - validations: - required: true - - type: textarea - id: environment - attributes: - label: Environment Details - description: "e.g., Visual Studio version, Windows version, Hardware specs." - placeholder: "Visual Studio 2022 v17.x, Windows 11..." - validations: - required: false - - type: textarea - id: context - attributes: - label: Additional Context - description: "Add any other context, screenshots, or logs here." - validations: - required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0c..00000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml deleted file mode 100644 index 20a1aa73..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Feature Request -description: Suggest an idea to help us improve MinecraftConsoles -title: "[Feature]: " -labels: - - "enhancement" - -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to fill out this feature request report!** - We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - - - type: textarea - attributes: - label: Description - description: | - A clear and concise description of the feature you're interested in. - validations: - required: true - - - type: textarea - attributes: - label: Suggested Solution - description: | - Describe the solution you'd like. A clear and concise description of what you want to happen. - validations: - required: true - - - type: textarea - attributes: - label: Alternatives - description: | - Describe alternatives you've considered. - A clear and concise description of any alternative solutions or features you've considered. - validations: - required: false - - - type: textarea - attributes: - label: Additional Context - description: | - Add any other context about the problem here. - validations: - required: false -- cgit v1.2.3 From e11f15b7292b84c42410bd3292d9686f1f84bad6 Mon Sep 17 00:00:00 2001 From: WushR00M <106882106+WushR00M@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:08:27 -0700 Subject: Move img.png to .github to reduce root directory clutter --- img.png | Bin 975385 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 img.png diff --git a/img.png b/img.png deleted file mode 100644 index 4f958dc4..00000000 Binary files a/img.png and /dev/null differ -- cgit v1.2.3 From a4dd1c4bc7010c0a4067496b0abf182ced84daff Mon Sep 17 00:00:00 2001 From: WushR00M <106882106+WushR00M@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:08:52 -0700 Subject: Add files via upload --- .github/IMG_8725.png | Bin 0 -> 975385 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/IMG_8725.png diff --git a/.github/IMG_8725.png b/.github/IMG_8725.png new file mode 100644 index 00000000..4f958dc4 Binary files /dev/null and b/.github/IMG_8725.png differ -- cgit v1.2.3 From 08b81c34fb305c15549eee8dba8e4e928bec18e6 Mon Sep 17 00:00:00 2001 From: WushR00M <106882106+WushR00M@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:18:16 -0700 Subject: Update image path in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90976e95..6be5cd7e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Discord](https://img.shields.io/badge/Discord-Join%20Server-5865F2?logo=discord&logoColor=white)](https://discord.gg/5CSzhc9t) -![img.png](img.png) +![img.png](.github/IMG_8725.png) ## Introduction -- cgit v1.2.3