Update Java Class

This commit is contained in:
2026-02-06 18:03:21 -05:00
parent fc14fe2b57
commit 81373d1db7
2 changed files with 6 additions and 0 deletions

View File

@@ -78,3 +78,9 @@ if (-not (Test-Path $backupClass)) {
Copy-Item $patchedClass $targetClass -Force Copy-Item $patchedClass $targetClass -Force
Write-Output "Patched BaseVehicle.class deployed to $targetClass" Write-Output "Patched BaseVehicle.class deployed to $targetClass"
Write-Output "Backup stored at $backupClass" Write-Output "Backup stored at $backupClass"
$distDir = Join-Path $repoRoot "zombie\vehicles"
$distClass = Join-Path $distDir "BaseVehicle.class"
New-Item -ItemType Directory -Force -Path $distDir | Out-Null
Copy-Item $patchedClass $distClass -Force
Write-Output "Distribution class updated at $distClass"

Binary file not shown.