diff options
author | Pierre-Yves Rollo <dev@pyrollo.com> | 2018-01-13 12:38:55 +0100 |
---|---|---|
committer | Pierre-Yves Rollo <dev@pyrollo.com> | 2018-01-13 12:38:55 +0100 |
commit | a71ae8e01314d0653f785a022a898636cdf54424 (patch) | |
tree | aecda4d91903f4b983c5c86feb442d19608fc66a /signs | |
parent | 5cf61f9e23a2057d6ce0c4213b3095820fc6920e (diff) | |
download | display_modpack-a71ae8e01314d0653f785a022a898636cdf54424.tar.gz display_modpack-a71ae8e01314d0653f785a022a898636cdf54424.tar.bz2 display_modpack-a71ae8e01314d0653f785a022a898636cdf54424.zip |
Version 1.0
Diffstat (limited to 'signs')
-rw-r--r-- | signs/README.md | 2 | ||||
-rw-r--r-- | signs/nodes.lua | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/signs/README.md b/signs/README.md index 9e678de..0282d2e 100644 --- a/signs/README.md +++ b/signs/README.md @@ -2,7 +2,7 @@ This mod provides various signs 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. +For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?t=19365) at the Minetest forums. **Dependancies**: default, display\_lib, font\_lib diff --git a/signs/nodes.lua b/signs/nodes.lua index 2b8ab66..926d6e3 100644 --- a/signs/nodes.lua +++ b/signs/nodes.lua @@ -104,7 +104,7 @@ local models = { entity_fields = { right = -3/32, size = { x = 12/16, y = 6/16 }, - resolution = { x = 112, y = 64 }, + resolution = { x = 9, y = 5 }, maxlines = 2, color="#000", }, @@ -127,7 +127,7 @@ local models = { entity_fields = { right = 3/32, size = { x = 12/16, y = 6/16 }, - resolution = { x = 112, y = 64 }, + resolution = { x = 9, y = 5 }, maxlines = 2, color = "#000", }, @@ -149,7 +149,7 @@ local models = { width = 26/32, height = 30/32, entity_fields = { - resolution = { x = 144, y = 64 }, + resolution = { x = 11, y = 5 }, maxlines = 1, color="#000", valign="top", |