diff options
author | Wuzzy <wuzzy2@mail.ru> | 2016-08-01 21:34:23 +0200 |
---|---|---|
committer | rubenwardy <rubenwardy@gmail.com> | 2016-08-01 20:34:23 +0100 |
commit | 5dec2fd60b9b5a21bfb474f06d40a74c602c180d (patch) | |
tree | 616dc6b27c63ce50212010c87b6078b97d9c3f44 /api.lua | |
parent | 7eeebf0f403d78f734fb10fc82cc066df4553815 (diff) |
Make textures follow naming conventions
Diffstat (limited to 'api.lua')
-rw-r--r-- | api.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -220,8 +220,8 @@ function awards.unlock(name, award) -- Get Notification Settings local title = awdef.title or award local desc = awdef.description or "" - local background = awdef.background or "bg_default.png" - local icon = awdef.icon or "unknown.png" + local background = awdef.background or "awards_bg_default.png" + local icon = awdef.icon or "awards_unknown.png" local custom_announce = awdef.custom_announce or S("Achievement Unlocked:") -- Do Notification @@ -309,7 +309,7 @@ function awards.getFormspec(name, to, sid) local def = awards.def[item.name] if def and def.secret and not item.got then formspec = formspec .. "label[1,2.75;Secret Award]".. - "image[1,0;3,3;unknown.png]" + "image[1,0;3,3;awards_unknown.png]" if def and def.description then formspec = formspec .. "label[0,3.25;Unlock this award to find out what it is]" end |