Fix bad HUD function name

This commit is contained in:
Wouters Dorian 2015-08-26 12:23:42 +02:00
parent e8305e38e9
commit 4a93e351f3
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ end
-- Supplied positions may be `nil` and will be skipped.
-- @note Calling this function while quests are already displayed will result
-- in undefined behaviour. Call it beforehand.
function quests.set_hud_position(x, y)
function quests.set_hud_offset(x, y)
hud_config.offset.x = x or hud_config.offset.x
hud_config.offset.y = y or hud_config.offset.y
end