Update unsuported cards, set a condition for showing poison counters and energy counter, added tribal al card type check, show the amount o

This commit is contained in:
punkeduard
2017-08-02 18:42:52 -05:00
parent b0506bcd96
commit c805a58fb0
4 changed files with 31 additions and 171 deletions

View File

@@ -134,7 +134,7 @@ void GuiAvatar::Render()
}
//poison
char poison[10];
if (poisonCount >= 0)
if (poisonCount > 0)
{
sprintf(poison, "%i", poisonCount);
switch (corner)
@@ -151,7 +151,7 @@ void GuiAvatar::Render()
}
//energy
char energy[15];
if (energyCount >= 0)
if (energyCount > 0)
{
sprintf(energy, "%i", energyCount);
switch (corner)