hotfix hint cost problem

This commit is contained in:
Fabian Dill 2020-06-07 03:08:53 +02:00
parent 2302150521
commit 55b37a998d
1 changed files with 1 additions and 1 deletions

View File

@ -727,7 +727,7 @@ class ClientMessageProcessor(CommandProcessor):
else:
can_pay = 1000
import random
new_hints = list(new_hints)
new_hints = [hint for hint in new_hints if not hint.found]
random.shuffle(new_hints)
if can_pay:
hints = []