RJ
01042589
만료날짜 : 2026.05.25 05:00 (13일)
2026년 05월 11일 내용 추가
【중요】 조련실을 사용할 수 없게 되는 문제 수정
・카지노에서 승리해도 해방되지 않는 버그 수정
・영어 설정 시 진행 불능 문제를 수정
# untar_zst.py
import sys, tarfile, compression.zstd, io
src = sys.argv[1]
dst = sys.argv[2] if len(sys.argv) > 2 else "."
with open(src, "rb") as f:
data = compression.zstd.decompress(f.read())
with tarfile.open(fileobj=io.BytesIO(data)) as tar:
tar.extractall(dst, filter="data")
print(f"완료: {dst}")
python untar_zst.py archive.tar.zst 출력폴더
