summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-04-05 16:48:33 +0100
committerrubenwardy <rw@rubenwardy.com>2018-04-05 16:48:33 +0100
commit2f49d895ed9b9bea22e8937a4396560e2941d6de (patch)
tree9ba5f8edcff2075a7f15c0fd834cd6f7a2e4eeb5
parentd67d19ec5074ae6adb43a7b73d8a733b74931ff2 (diff)
Fix typo in previous commit
-rw-r--r--gui.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui.lua b/gui.lua
index a41a971..198fa5a 100644
--- a/gui.lua
+++ b/gui.lua
@@ -148,10 +148,10 @@ function awards.get_formspec(name, to, sid)
-- title = title .. " [" .. award.score .. "]"
if award.unlocked then
formspec = formspec .. minetest.formspec_escape(title)
- elseif awards.started then
- formspec = formspec .. "#BEBEBE".. minetest.formspec_escape(title)
+ elseif award.started then
+ formspec = formspec .. "#c0c0c0".. minetest.formspec_escape(title)
else
- formspec = formspec .. "#ACACAC".. minetest.formspec_escape(title)
+ formspec = formspec .. "#a0a0a0".. minetest.formspec_escape(title)
end
end
end