Skip to content

Commit 9bc7a23

Browse files
committed
linteroni and cheese
1 parent 2a7a7b7 commit 9bc7a23

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

archipelago/DK64Client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,11 +1205,10 @@ def on_package(self, cmd: str, args: dict):
12051205
ap_major = ap_version.split(".")[0]
12061206
ap_minor = ap_version.split(".")[1]
12071207
ap_patch = ap_version.split(".")[2]
1208-
if server_major != ap_major or server_minor != server_minor:
1208+
if server_major != ap_major or server_minor != ap_minor:
12091209
logger.error("Your DK64 APworld does not match with the generated world.")
12101210
logger.error(f"Your version: {ap_version} | Generated version: {server_ver}")
1211-
raise Exception("Your DK64 APworld does not match with the generated world.\n" +
1212-
f"Your version: {ap_version} | Generated version: {server_ver}")
1211+
raise Exception("Your DK64 APworld does not match with the generated world.\n" + f"Your version: {ap_version} | Generated version: {server_ver}")
12131212
if server_patch != ap_patch:
12141213
logger.warning("Your DK64 APworld does not match with the generated world, but this should not be a breaking change.")
12151214
logger.warning("While we try to maintain backwards compatibility on patch versions, be warned that something might break.")

0 commit comments

Comments
 (0)