We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76badc5 commit ed6fcfdCopy full SHA for ed6fcfd
root.py
@@ -4022,12 +4022,13 @@ def warresult2(uid):
4022
if len(res) < 2:
4023
i -= 1
4024
continue
4025
- if res[2] == 1:
+ if int(res[2]) == 1:
4026
break
4027
- if res[1] == 0:#defence fail
+ if int(res[1]) == 0:#defence fail
4028
fails += 1
4029
4030
if fails == 3:
4031
+ print "weak mode"
4032
weakMode = True
4033
#if in weak Mode just lost defence 5%
4034
if weakMode:
0 commit comments