File size: 268 Bytes
463f868
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
$c = Get-Content engine/game/game_state.py
$start = $c[0..106]
$end = $c[481..($c.Length-1)]
Write-Host "Start lines: $($start.Length)"
Write-Host "First end line: $($end[0])"
$new = $start + $end
$new | Set-Content engine/game/game_state.py
Write-Host "Done"