Compare commits

...

2 Commits

Author SHA1 Message Date
01eaf8fb05 Замена хоста 2026-06-14 15:24:36 +03:00
cb402decb5 Update LocalMods 2026-06-11 14:14:34 +03:00
2 changed files with 4 additions and 12 deletions

View File

@@ -3,11 +3,10 @@
<contentpackages>
<corepackage path="Content/ContentPackages/Vanilla.xml" />
<regularpackages>
<package path="LocalMods/LuaCsForBarotrauma/filelist.xml" />
<package path="LocalMods/NT Informative Descriptions/filelist.xml" />
<package path="LocalMods/LuaCsClientSideEnforced/filelist.xml" />
<package path="LocalMods/Total Russian Translation (TRT)/filelist.xml" />
<package path="LocalMods/Endgame Reforged/filelist.xml" />
<package path="LocalMods/Bigger Deconstructor Barocraftables+ (No Limits)/filelist.xml" />
<package path="LocalMods/BaroCraftables (No Limits)/filelist.xml" />
<package path="LocalMods/Dont Open Debug Console On Errors/filelist.xml" />
<package path="LocalMods/Enhanced Loading/filelist.xml" />
@@ -40,15 +39,14 @@
<package path="LocalMods/Press-R-to-Reload/filelist.xml" />
<package path="LocalMods/Better Genes/filelist.xml" />
<package path="LocalMods/More Content for Europa/filelist.xml" />
<package path="LocalMods/Thalassophobia Restored/filelist.xml" />
<package path="LocalMods/Blueprints/filelist.xml" />
<package path="LocalMods/Monospaced Text Display/filelist.xml" />
<package path="LocalMods/Sunken Tapes/filelist.xml" />
<package path="LocalMods/TSFX/filelist.xml" />
<package path="LocalMods/Fourth Empire Posters/filelist.xml" />
<package path="LocalMods/NCT-Spike Mod. 2/filelist.xml" />
<package path="LocalMods/VT-MOFS Mod. 4/filelist.xml" />
<package path="LocalMods/ADX-Atlas IV/filelist.xml" />
<package path="LocalMods/NCT-Spike Mod.1/filelist.xml" />
</regularpackages>
</contentpackages>
</Barotrauma>

10
prep
View File

@@ -10,7 +10,7 @@ PREPARE_LOCAL = os.path.join(BASE, "prepare_local")
AUTOGEN = os.path.join(BASE, "scripts", "autogen_config.py")
LOCALMODS_DIR = os.path.join(BASE, "LocalMods")
RSYNC_DEST = "root@homelabvm:/opt/barotrauma/LocalMods/"
RSYNC_DEST = "root@barotrauma:/opt/barotrauma/LocalMods/"
def log_ok(msg):
@@ -51,13 +51,7 @@ def main():
log_ok("config_player.xml generated")
print()
log_info("Step 4/4: Committing...")
subprocess.run(["git", "add", "-A"], cwd=BASE, check=True)
subprocess.run(["git", "commit", "-m", msg], cwd=BASE, check=True)
log_ok(f"Committed: {msg}")
print()
log_ok("Done. Push manually when ready.")
log_ok("Done.")
if __name__ == "__main__":