hotfix hint cost problem
This commit is contained in:
parent
2302150521
commit
55b37a998d
|
@ -727,7 +727,7 @@ class ClientMessageProcessor(CommandProcessor):
|
||||||
else:
|
else:
|
||||||
can_pay = 1000
|
can_pay = 1000
|
||||||
import random
|
import random
|
||||||
new_hints = list(new_hints)
|
new_hints = [hint for hint in new_hints if not hint.found]
|
||||||
random.shuffle(new_hints)
|
random.shuffle(new_hints)
|
||||||
if can_pay:
|
if can_pay:
|
||||||
hints = []
|
hints = []
|
||||||
|
|
Loading…
Reference in New Issue