From 8661faa612c6014758007732b5ca01c477f52928 Mon Sep 17 00:00:00 2001 From: FinishedFragment Date: Sun, 25 Jul 2021 11:26:58 +0000 Subject: [PATCH 1/4] Add missing word --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce924ec58..f3a567dc9 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ The MineClone 5 repository is hosted at Mesehub. To contribute or report issues, The main goal of **MineClone 5** is to be a clone of Minecraft and to be released as free software. * **Target of development: Minecraft Java Edition latest version** -* MineClone 5 also includes Optifine features supported by the Minetest +* MineClone 5 also includes Optifine features supported by the Minetest engine * In general, Minecraft is aimed to be cloned as good as possible * Cloning the gameplay has highest priority * MineClone 5 will use different assets, but with a similar style From 5bfec00295ba986abc0cfe7fca63565b54acacb4 Mon Sep 17 00:00:00 2001 From: kay27 Date: Sun, 25 Jul 2021 19:42:29 +0400 Subject: [PATCH 2/4] Fix attempt to perform arithmetic on a nil value in mobs.drive() --- mods/ENTITIES/mcl_mobs/api/mount.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mcl_mobs/api/mount.lua b/mods/ENTITIES/mcl_mobs/api/mount.lua index 0ed54a46e..11b2e5e89 100644 --- a/mods/ENTITIES/mcl_mobs/api/mount.lua +++ b/mods/ENTITIES/mcl_mobs/api/mount.lua @@ -227,8 +227,12 @@ function mobs.drive(entity, moving_anim, stand_anim, can_fly, dtime) end -- mob rotation - entity.object:set_yaw(entity.driver:get_look_horizontal() - entity.rotate) - entity.yaw = entity.driver:get_look_horizontal() - entity.rotate + local rotate = entity.rotate + if rotate then + local yaw = entity.driver:get_look_horizontal() - rotate + entity.yaw = yaw + entity.object:set_yaw(yaw) + end --[[ if can_fly then From fa2cb115440aa115286052d6a325dd4abfb89e40 Mon Sep 17 00:00:00 2001 From: Emojigit Date: Wed, 28 Jul 2021 04:53:37 +0000 Subject: [PATCH 3/4] MineClone5 is not a direct continue of MIneClone, MineClone2 instead --- LEGAL.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LEGAL.md b/LEGAL.md index f0920efe0..075bb4534 100644 --- a/LEGAL.md +++ b/LEGAL.md @@ -24,8 +24,7 @@ text files a different license. This counts as dual-licensing. You can choose which license applies to you: Either the license of MineClone 5 (GNU GPLv3) or the mod's license. -MineClone 5 is a direct continuation of the discontinued MineClone -project by davedevils. +MineClone5 is a fork of MineClone2 that uses a different workflow to includes features after Minecaft 1.12. Mod credits: See `README.txt` or `README.md` in each mod directory for information about other authors. From 6db904b5f817db652a6a73289538b5fa389333e1 Mon Sep 17 00:00:00 2001 From: Emojigit Date: Wed, 28 Jul 2021 04:54:32 +0000 Subject: [PATCH 4/4] \n --- LEGAL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LEGAL.md b/LEGAL.md index 075bb4534..bd05057c3 100644 --- a/LEGAL.md +++ b/LEGAL.md @@ -24,7 +24,8 @@ text files a different license. This counts as dual-licensing. You can choose which license applies to you: Either the license of MineClone 5 (GNU GPLv3) or the mod's license. -MineClone5 is a fork of MineClone2 that uses a different workflow to includes features after Minecaft 1.12. +MineClone5 is a fork of MineClone2 that uses a different workflow +to includes features after Minecaft 1.12. Mod credits: See `README.txt` or `README.md` in each mod directory for information about other authors.