Merge pull request #1 from the-simpsons-cartoon-studio/main

please swear to god this will work
This commit is contained in:
Tuff CWC 2026-03-07 06:31:37 +01:00 committed by GitHub
commit 22d258b6c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View file

@ -1,5 +1,7 @@
name: Nightly Release
permissions:
contents: write
on:
workflow_dispatch:
push:
@ -25,6 +27,10 @@ jobs:
- name: Build
run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Debug /p:Platform="Windows64"
- name: lazyfix
shell: pwsh
run: Copy-Item -Path "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Redist/MSVC/*/debug_nonredist/x64/*/*.dll" -Destination "./x64/Debug/"; Copy-Item -Path "C:/Windows/System32/ucrtbased.dll" -Destination "./x64/Debug/"
- name: Zip Build
run: 7z a -r LCEWindows64.zip ./x64/Debug/*

View file

@ -14,7 +14,7 @@ ItemRenderer *AbstractContainerScreen::itemRenderer = new ItemRenderer();
AbstractContainerScreen::AbstractContainerScreen(AbstractContainerMenu *menu)
{
// 4J - added initialisers
// 4J - added initialisersss
imageWidth = 176;
imageHeight = 166;
@ -227,4 +227,4 @@ void AbstractContainerScreen::tick()
Screen::tick();
if (!minecraft->player->isAlive() || minecraft->player->removed) minecraft->player->closeContainer();
}
}