Hud: Modify Y-positioning of health/breath starbars to prevent overlapping with Hotbar

This commit is contained in:
kwolekr 2015-02-08 12:45:19 -05:00 committed by Nils Dagsson Moskopp
parent bd42a0c92e
commit 201f783d75
Signed by: erle
GPG Key ID: A3BC671C35191080
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ local health_bar_definition =
number = 20, number = 20,
direction = 0, direction = 0,
size = { x=24, y=24 }, size = { x=24, y=24 },
offset = { x=(-10*24)-25, y=-(48+24+10)}, offset = { x=(-10*24)-25, y=-(48+24+16)},
} }
local breath_bar_definition = local breath_bar_definition =
@ -18,7 +18,7 @@ local breath_bar_definition =
number = 20, number = 20,
direction = 0, direction = 0,
size = { x=24, y=24 }, size = { x=24, y=24 },
offset = {x=25,y=-(48+24+10)}, offset = {x=25,y=-(48+24+16)},
} }
local hud_ids = {} local hud_ids = {}