Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0689f3

Browse files
committedMar 7, 2024
minor update to revert using logger before it is defined
1 parent c569682 commit f0689f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎APWorld/MinitClient.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
tracker_loaded = True
2727
except ModuleNotFoundError:
2828
from CommonClient import CommonContext as SuperContext
29-
logger.info("please install the universal tracker :)")
29+
print("please install the universal tracker :)")
3030

3131

3232
logger = logging.getLogger("Client")
@@ -390,6 +390,7 @@ def handleItems(ctx: CommonContext):
390390
swordsF = 0
391391
swordsR = 0
392392
for item in ctx.items_received:
393+
# TODO - change to lookup ids for actual item names
393394
if item[0] == 60000:
394395
coins += 1
395396
elif item[0] == 60001:

0 commit comments

Comments
 (0)
Please sign in to comment.