-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.py
More file actions
26 lines (24 loc) · 787 Bytes
/
manager.py
File metadata and controls
26 lines (24 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import zipfile, os
with zipfile.ZipFile("staging/input_pack.zip", "r") as file:
file.extractall("pack/")
try:
if os.getenv("SOUNDS_CONVERSION") == "true": import sound
except Exception as e: print(e)
try:
if os.getenv("MEG3_FIX") == "true": import meg3
except Exception as e: print(e)
try:
if os.getenv("ARMOR_CONVERSION") == "true": import armor
except Exception as e: print(e)
try:
if os.getenv("FONT_CONVERSION") == "true": import font
except Exception as e: print(e)
try:
if os.getenv("BOW_CONVERSION") == "true": import bow
except Exception as e: print(e)
try:
if os.getenv("SHIELD_CONVERSION") == "true": import shield
except Exception as e: print(e)
try:
if os.getenv("BLOCK_CONVERSION") == "true": import blocks
except Exception as e: print(e)