Version 1.0.0

This commit is contained in:
AliasAlreadyTaken 2024-07-18 03:28:17 +02:00
parent fb4fc8ea2c
commit 98553b4ae4
5 changed files with 4 additions and 8 deletions

View File

@ -9,7 +9,7 @@ Code:
Media: Media:
* screenshot.png [CC0](https://gitea.your-land.de/your-land/yl_canned_food/src/LICENSE-CC0) Styxcolor * screenshot.png [CC0](https://gitea.your-land.de/your-land/yl_canned_food/src/LICENSE-CC0) AliasAlreadyTaken
* textures [CC0](https://gitea.your-land.de/your-land/yl_canned_food/src/LICENSE-CC0) Styxcolor * textures [CC0](https://gitea.your-land.de/your-land/yl_canned_food/src/LICENSE-CC0) Styxcolor
yl_canned_food_apple_jam_plus.png yl_canned_food_apple_jam_plus.png
yl_canned_food_apple_jam.png yl_canned_food_apple_jam.png

View File

@ -1,6 +1,4 @@
-- Setting a configuration, switch the order in which the settings shall take precedence. First valid one taken.
yl_canned_food.settings = {} yl_canned_food.settings = {}
yl_canned_food.settings.debug = minetest.settings:get_bool("yl_canned_food.debug",false) yl_canned_food.settings.debug = minetest.settings:get_bool("yl_canned_food.debug",false)

View File

@ -1,7 +1,7 @@
yl_canned_food.information = {} yl_canned_food.information = {}
yl_canned_food.information.version = "0.0.1" yl_canned_food.information.version = "1.0.0"
yl_canned_food.information.author = "AliasAlreadyTaken" yl_canned_food.information.author = "AliasAlreadyTaken"
yl_canned_food.information.license = "MIT" yl_canned_food.information.license = "MIT"
yl_canned_food.information.name = "yl_canned_food" -- Name of the mod yl_canned_food.information.name = "yl_canned_food"
yl_canned_food.information.source = "https://gitea.your-land.de/your-land/yl_canned_food" yl_canned_food.information.source = "https://gitea.your-land.de/your-land/yl_canned_food"
yl_canned_food.information.additional = yl_canned_food.t("information_additional") yl_canned_food.information.additional = yl_canned_food.t("information_additional")

View File

@ -1,4 +1,4 @@
-- Version 0.0.1 -- Version 1.0.0
-- Author AliasAlreadyTaken -- Author AliasAlreadyTaken
-- License MIT -- License MIT

View File

@ -1,4 +1,2 @@
--dofile(yl_canned_food.modpath .. "item_apple.lua")
dofile(yl_canned_food.modpath .. "item_foods.lua") dofile(yl_canned_food.modpath .. "item_foods.lua")
dofile(yl_canned_food.modpath .. "item_legacy.lua") dofile(yl_canned_food.modpath .. "item_legacy.lua")