mirror of
https://github.com/pyrollo/display_modpack.git
synced 2024-11-27 16:43:45 +01:00
Copyright and readme update and code style.
This commit is contained in:
parent
2d24ba9339
commit
ce8e214400
@ -13,6 +13,12 @@ For more information, see the [forum topic](https://forum.minetest.net/viewtopic
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 2017-12-10
|
||||||
|
|
||||||
|
- Compatibility of signs mod with signs_lib (thanks to gpcf) ;
|
||||||
|
|
||||||
|
- Added large banner in road signs (thanks to gpcf) ;
|
||||||
|
|
||||||
### 2017-08-26
|
### 2017-08-26
|
||||||
|
|
||||||
- Changed signs from wallmounted to facedir to improve textures and make it possible to use screwdriver.
|
- Changed signs from wallmounted to facedir to improve textures and make it possible to use screwdriver.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Code, Textures and Models by Pierre-Yves Rollo (pyrollo)
|
Code, Textures and Models by Pierre-Yves Rollo (pyrollo)
|
||||||
intllib support (i18n) by fat115
|
intllib support (i18n) by fat115
|
||||||
intllib fallback code and tools by Diego Martínez (kaeza)
|
intllib fallback code and tools by Diego Martínez (kaeza)
|
||||||
|
Extra contributors : (gpcf)
|
||||||
|
@ -18,6 +18,16 @@ For more information, see the [forum topic](https://forum.minetest.net/viewtopic
|
|||||||
|
|
||||||
B = Blue Dye, W = White Dye, S = Steel Ingot
|
B = Blue Dye, W = White Dye, S = Steel Ingot
|
||||||
|
|
||||||
|
**Large Banner**
|
||||||
|
|
||||||
|
Shapeless recipe : four white street signs.
|
||||||
|
|
||||||
|
S S S
|
||||||
|
S - -
|
||||||
|
- - -
|
||||||
|
|
||||||
|
S = White street sign
|
||||||
|
|
||||||
**Red and White Street Sign**
|
**Red and White Street Sign**
|
||||||
|
|
||||||
W R -
|
W R -
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
Code, Textures and Models by Pierre-Yves Rollo (pyrollo)
|
Code, Textures and Models by Pierre-Yves Rollo (pyrollo)
|
||||||
intllib support (i18n) by fat115
|
intllib support (i18n) by fat115
|
||||||
intllib fallback code and tools by Diego Martínez (kaeza)
|
intllib fallback code and tools by Diego Martínez (kaeza)
|
||||||
|
Extra contributors : (gpcf)
|
||||||
|
|
||||||
|
@ -49,12 +49,9 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'signs_road:large_street_sign',
|
output = 'signs_road:large_street_sign',
|
||||||
recipe = {'signs_road:white_street_sign','signs_road:white_street_sign','signs_road:white_street_sign','signs_road:white_street_sign'}
|
recipe = {'signs_road:white_street_sign', 'signs_road:white_street_sign', 'signs_road:white_street_sign', 'signs_road:white_street_sign'},
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'signs_road:green_street_sign 2',
|
output = 'signs_road:green_street_sign 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
Loading…
Reference in New Issue
Block a user