From 2b8bb9f0ae1ca3c6da7acedc3f520281991200e8 Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 16 Jan 2023 14:02:38 -0600 Subject: [PATCH] Version 1.4 (#8) - Deprecated functions (`get_look_yaw`) were replaced with newer ones. - Add support for 3+ passengers (#4). - Thanks, @Lazerbeak12345! - `default` was removed from dependencies. The mod can be used more freely in other games. --- .luacheckrc | 4 ++-- README.md | 3 +-- depends.txt | 1 - mod.conf | 4 ++-- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 8fc3db9..5f46147 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,6 +1,6 @@ unused_args = false allow_defined_top = true -max_line_length = 999 +max_line_length = false globals = { "lib_mount", "player_api", @@ -13,5 +13,5 @@ read_globals = { "minetest", "mobs", } -files["init.lua"].ignore = { "eye_offset", "attach_at", +files["init.lua"].ignore = { "eye_offset", "attach_at", "set_animation", "new_velo" } diff --git a/README.md b/README.md index 85590d1..9f73bb8 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,10 @@ Made by [blert2112](https://github.com/blert2112).\ Handed over to [Panquesito7](https://github.com/Panquesito7). -Current version: 1.3 +Current version: 1.4 ## Dependencies -- `default` (included in [Minetest Game](https://github.com/minetest/minetest_game)) - `player_api` (included in [Minetest Game](https://github.com/minetest/minetest_game)) ### Optional dependencies diff --git a/depends.txt b/depends.txt index 4c9c4bf..9abacbe 100644 --- a/depends.txt +++ b/depends.txt @@ -1,3 +1,2 @@ -default player_api mobs? diff --git a/mod.conf b/mod.conf index f530e55..ab0f65a 100644 --- a/mod.conf +++ b/mod.conf @@ -1,8 +1,8 @@ name = lib_mount -depends = default, player_api +depends = player_api optional_depends = mobs description = API framework for mounting objects. license = LGPLv2.1 author = Panquesito7 min_minetest_version = 5.0.0 -version = 1.3 +version = 1.4