diff --git a/README.txt b/README.txt index f6fa7db..55fdbf3 100644 --- a/README.txt +++ b/README.txt @@ -25,18 +25,14 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -License of textures: --------------------- -Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) -http://creativecommons.org/licenses/by-sa/4.0/ - - -Authors of textures: --------------------- -rubenwardy (CC-BY-SA): +Authors and licenses of textures: +--------------------------------- +TenPlus1 (WTFPL): + cake.png cake_bottom.png, derivative - cake_entity.png cake_inner.png, derivative cake_side.png, derivative - cake_sugar.png cake_top.png, derivative + +rubenwardy (CC-BY-SA): + cake_sugar.png diff --git a/init.lua b/init.lua index 0221ef8..c2169b4 100644 --- a/init.lua +++ b/init.lua @@ -34,6 +34,8 @@ for i, size in ipairs(sizes) do drop = drop, drawtype = "nodebox", tiles = tiles, + inventory_image = "cake.png", + wield_image = "cake.png", paramtype = "light", is_ground_content = false, groups = {crumbly=3}, @@ -90,7 +92,7 @@ minetest.register_craft({ minetest.register_entity("cake:cake_entity", { physical = false, timer = 0, - textures = {"cake_entity.png"}, + textures = {"cake.png"}, lastpos = {}, collisionbox = {0,0,0,0,0,0}, on_step = function(self, dtime) diff --git a/textures/cake.png b/textures/cake.png new file mode 100644 index 0000000..22c70d4 Binary files /dev/null and b/textures/cake.png differ diff --git a/textures/cake_bottom.png b/textures/cake_bottom.png index fc99edb..84d8ad3 100644 Binary files a/textures/cake_bottom.png and b/textures/cake_bottom.png differ diff --git a/textures/cake_entity.png b/textures/cake_entity.png deleted file mode 100644 index 6739b33..0000000 Binary files a/textures/cake_entity.png and /dev/null differ diff --git a/textures/cake_inner.png b/textures/cake_inner.png index 144f986..f1d0b52 100644 Binary files a/textures/cake_inner.png and b/textures/cake_inner.png differ diff --git a/textures/cake_side.png b/textures/cake_side.png index 144f986..87902d1 100644 Binary files a/textures/cake_side.png and b/textures/cake_side.png differ diff --git a/textures/cake_top.png b/textures/cake_top.png index fc99edb..764566f 100644 Binary files a/textures/cake_top.png and b/textures/cake_top.png differ