Removed overlooked Tube-Updates

rope
Bernhard Bonigl 2012-04-22 18:48:38 +02:00
parent b52dafc7b2
commit 12ffe6ab9c
1 changed files with 0 additions and 7 deletions

View File

@ -41,7 +41,6 @@ protected func Recruitment(int plr)
HUDcontroller = CreateObject(GUI_Controller, 10, 10, plr);
HUDcontroller->ScheduleUpdateBackpack();
HUDcontroller->UpdateHealthTube();
return _inherited(plr, ...);
}
@ -62,24 +61,18 @@ protected func OnPromotion()
protected func OnEnergyChange()
{
if (HUDcontroller)
HUDcontroller->UpdateHealthTube();
if (HUDselector)
HUDselector->UpdateHealthBar();
return _inherited(...);
}
protected func OnBreathChange() {
if (HUDcontroller)
HUDcontroller->UpdateBreathTube();
if (HUDselector)
HUDselector->UpdateBreathBar();
return _inherited(...);
}
protected func OnMagicEnergyChange() {
if (HUDselector)
HUDselector->UpdateMagicBar();
return _inherited(...);
}