'=' != '=='
Signed-off-by: merspieler <merspieler@airmail.cc>
This commit is contained in:
parent
bc3d262ed8
commit
b14bf239c9
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ while i < argc:
|
||||||
wm = w % 10
|
wm = w % 10
|
||||||
nm = n % 10
|
nm = n % 10
|
||||||
|
|
||||||
if nm = 0:
|
if nm == 0:
|
||||||
wm += 1
|
wm += 1
|
||||||
|
|
||||||
tile = wm * 10 + nm
|
tile = wm * 10 + nm
|
||||||
|
|
Loading…
Reference in a new issue