Make health summary reflect 'down' status
This commit is contained in:
parent
0db48c544d
commit
9b00d08b39
|
@ -375,7 +375,7 @@ class CombatGroup():
|
|||
|
||||
def group_down(self):
|
||||
for c in self.members.values():
|
||||
if c.hp > 0:
|
||||
if not c.is_down():
|
||||
return False
|
||||
|
||||
return True
|
||||
|
@ -645,7 +645,9 @@ recharge powers:
|
|||
def format_health_summary(self):
|
||||
bloodied = ''
|
||||
temp_info = ''
|
||||
if self.is_bloodied():
|
||||
if self.is_down():
|
||||
bloodied = ', down'
|
||||
elif self.is_bloodied():
|
||||
bloodied = ', bloodied'
|
||||
if len(self.conditions):
|
||||
bloodied = bloodied + ', '
|
||||
|
|
Loading…
Reference in New Issue
Block a user