specific configs per script

This commit is contained in:
Lincoln-LM 2021-12-27 02:48:38 -07:00
parent 780a41364b
commit 3f649bfc2f
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import time
import json
from xorshift import Xorshift
config = json.load(open("config.json"))
config = json.load(open("config_munchlax.json"))
def randrange(r,mi,ma):
t = (r & 0x7fffff) / 8388607.0

View File

@ -4,7 +4,7 @@ import time
import json
from xorshift import Xorshift
config = json.load(open("config.json"))
config = json.load(open("config_cave.json"))
def expr():
player_eye = cv2.imread(config["image"], cv2.IMREAD_GRAYSCALE)