mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-07-14 22:10:26 +02:00
Release 2017-08-26
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
|
||||
This mod provides stone steles with text display. Text is locked if area is protected.
|
||||
|
||||
For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?f=11&t=13563) at the Minetest forums.
|
||||
|
||||
**Dependancies**: default, display\_lib, font\_lib, technic?
|
||||
|
||||
(Technic adds marble and granite steles)
|
||||
|
@ -19,11 +19,11 @@
|
||||
--]]
|
||||
|
||||
steles = {}
|
||||
steles.path = minetest.get_modpath("steles")
|
||||
steles.name = minetest.get_current_modname()
|
||||
steles.path = minetest.get_modpath(steles.name)
|
||||
|
||||
-- Load support for intllib.
|
||||
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||||
local S, NS = dofile(MP.."/intllib.lua")
|
||||
local S, NS = dofile(steles.path.."/intllib.lua")
|
||||
steles.intllib = S
|
||||
|
||||
dofile(steles.path.."/config.lua")
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-05 10:06+0200\n"
|
||||
"POT-Creation-Date: 2017-08-26 11:29+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -87,6 +87,7 @@ for i, material in ipairs(steles.materials) do
|
||||
end
|
||||
end
|
||||
end,
|
||||
on_punch = function(pos, node, player, pointed_thing) display_lib.update_entities(pos) end,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user