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.
This commit is contained in:
David Leal 2023-01-16 14:02:38 -06:00 committed by GitHub
parent 88f02e2b6b
commit 2b8bb9f0ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 7 deletions

View File

@ -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" }

View File

@ -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

View File

@ -1,3 +1,2 @@
default
player_api
mobs?

View File

@ -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