Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/data-bomb/Silica
Browse files Browse the repository at this point in the history
  • Loading branch information
data-bomb committed May 11, 2024
2 parents 1a66a84 + ae4544f commit 0e14e9d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cicd-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ jobs:
mkdir -p release/listen/Mods/disabled
mkdir -p release/dedi/UserData
mkdir -p release/listen/UserData
cp rungame.bat release/dedi/rungame.bat
cp launch.bat release/dedi/launch.bat
cp LICENSE release/dedi/UserData/Mod-License.txt
cp LICENSE release/listen/UserData/Mod-License.txt
Expand Down
4 changes: 2 additions & 2 deletions Si_CommManagement/Si_CommManagement.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\include\common.csproj" />
<Import Project="..\include\common.csproj"/>
<Import Project="..\include\net6.csproj" Condition="'$(TargetFramework)' == 'net6.0'"/>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>
</Project>
12 changes: 12 additions & 0 deletions rungame.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@ECHO OFF
SETLOCAL EnableExtensions
SET "EXE_PATH=Silica.exe"
SET "ADDITIONAL_ARGS=--nogpu --batchmode --nographics --render-offscreen --screen-width 0 --screen-height 0 --fullscreen 0 --assetbundle-compression LZ4 --target-frame-rate 48 --noaudio"
SET "MELON_ARGS=--melonloader.hideconsole --melonloader.disablestartscreen"
:RESTART_LOOP
start "" /B /HIGH /AFFINITY 0x0000000000000FFF %EXE_PATH% %MELON_ARGS% %ADDITIONAL_ARGS%
@ECHO OFF
timeout /t 86400 /nobreak > NUL
taskkill /IM "Silica.exe" /F
goto RESTART_LOOP
ENDLOCAL

0 comments on commit 0e14e9d

Please sign in to comment.