mirror of
https://github.com/SmallJoker/exchange_shop.git
synced 2025-01-09 17:40:38 +01:00
Code license: MIT, require 5.0.0-dev
This commit is contained in:
parent
d2273a0952
commit
45acc5e3ac
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
This mod adds an improved ("currency" compatible) shop to your world.
|
This mod adds an improved ("currency" compatible) shop to your world.
|
||||||
|
|
||||||
|
Requires 5.0.0-dev or newer
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* 4 buyer and 4 seller slots
|
* 4 buyer and 4 seller slots
|
||||||
* Much storage capacity
|
* Much storage capacity
|
||||||
@ -20,7 +22,10 @@ Optional dependencies:
|
|||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
CC0 for everything unless specified otherwise below.
|
|
||||||
|
Textures: CC0 - or see notes below
|
||||||
|
|
||||||
|
Code: MIT
|
||||||
|
|
||||||
Following textures were imported from [currency](https://github.com/minetest-mods/currency)
|
Following textures were imported from [currency](https://github.com/minetest-mods/currency)
|
||||||
* shop_front.png
|
* shop_front.png
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
default
|
|
||||||
currency?
|
|
||||||
bitchange?
|
|
||||||
wrench?
|
|
||||||
pipeworks?
|
|
||||||
tubelib?
|
|
4
init.lua
4
init.lua
@ -1,3 +1,7 @@
|
|||||||
|
if not minetest.get_translator then
|
||||||
|
error("exchange_shop requires at least Minetest 5.0.0-dev.")
|
||||||
|
end
|
||||||
|
|
||||||
exchange_shop = {}
|
exchange_shop = {}
|
||||||
exchange_shop.storage_size = 5 * 4
|
exchange_shop.storage_size = 5 * 4
|
||||||
exchange_shop.shopname = "exchange_shop:shop"
|
exchange_shop.shopname = "exchange_shop:shop"
|
||||||
|
Loading…
Reference in New Issue
Block a user