Fix second chance kobold

Submitted by:   Egorov Sergey (patches/453)
master
Kevin Zheng 2022-05-08 00:08:04 -07:00
parent 320ddc86b8
commit 251c2d7313
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ def blue_count_kobolds():
for y in range(map.Height):
below = map.ObjectAt(x, y)
while below:
if below.Name == 'kobold':
if below.Name == 'kobold' or below.Name == 'Second Chance kobold':
count = count + 1
break
below = below.Above