From 43da09620ed84f13e86b958e52b5c478f01f5227 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 6 Nov 2016 12:05:13 +0100 Subject: Fix bugs when mod is run outside of Minetest Game (#34) --- api.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'api.lua') diff --git a/api.lua b/api.lua index 7d921e1..916441e 100644 --- a/api.lua +++ b/api.lua @@ -463,9 +463,13 @@ function awards.show_to(name, to, sid, text) if sid == nil or sid < 1 then sid = 1 end + local deco = "" + if minetest.global_exists("default") then + deco = default.gui_bg .. default.gui_bg_img + end -- Show formspec to user minetest.show_formspec(to,"awards:awards", - "size[11,5]" .. default.gui_bg .. default.gui_bg_img .. + "size[11,5]" .. deco .. awards.getFormspec(name, to, sid)) end end -- cgit v1.2.3