mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- oops, this didn't get through
This commit is contained in:
parent
179e526981
commit
9456eeb8ec
1 changed files with 15 additions and 3 deletions
|
@ -106,9 +106,21 @@ class HexenStatusBar : BaseStatusBar
|
||||||
DrawImage("H2BAR", (0, 134), DI_ITEM_OFFSETS);
|
DrawImage("H2BAR", (0, 134), DI_ITEM_OFFSETS);
|
||||||
|
|
||||||
String Gem, Chain;
|
String Gem, Chain;
|
||||||
if (CPlayer.mo is "ClericPlayer") { Gem = "LIFEGMC2"; Chain = "CHAIN2"; }
|
if (CPlayer.mo is "ClericPlayer")
|
||||||
else if (CPlayer.mo is "MagePlayer") { Gem = "LIFEGMM2"; Chain = "CHAIN3"; }
|
{
|
||||||
else { Gem = "LIFEGMF2"; Chain = "CHAIN"; }
|
Gem = "LIFEGMC2";
|
||||||
|
Chain = "CHAIN2";
|
||||||
|
}
|
||||||
|
else if (CPlayer.mo is "MagePlayer")
|
||||||
|
{
|
||||||
|
Gem = "LIFEGMM2";
|
||||||
|
Chain = "CHAIN3";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Gem = "LIFEGMF2";
|
||||||
|
Chain = "CHAIN";
|
||||||
|
}
|
||||||
|
|
||||||
int inthealth = mHealthInterpolator2.GetValue();
|
int inthealth = mHealthInterpolator2.GetValue();
|
||||||
DrawGem(Chain, Gem, inthealth, CPlayer.mo.GetMaxHealth(true), (30, 193), -23, 49, 15, (multiplayer? DI_TRANSLATABLE : 0) | DI_ITEM_LEFT_TOP);
|
DrawGem(Chain, Gem, inthealth, CPlayer.mo.GetMaxHealth(true), (30, 193), -23, 49, 15, (multiplayer? DI_TRANSLATABLE : 0) | DI_ITEM_LEFT_TOP);
|
||||||
|
|
Loading…
Reference in a new issue