From 280165fadae5aba74b787c509b73045c450a1617 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Thu, 12 Dec 2024 13:00:26 +0000 Subject: [PATCH 1/4] tweak feather falling (#150) changed y_velocity check for player so thart feather falling only works when actually falling and not standing around. --- 3d_armor/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3d_armor/init.lua b/3d_armor/init.lua index e12bc88..6718b97 100644 --- a/3d_armor/init.lua +++ b/3d_armor/init.lua @@ -444,7 +444,7 @@ minetest.register_globalstep(function(dtime) local name = player:get_player_name() if armor.def[name].feather > 0 then local vel_y = player:get_velocity().y - if vel_y < 0 and vel_y < 3 then + if vel_y < -0.5 then vel_y = -(vel_y * 0.05) player:add_velocity({x = 0, y = vel_y, z = 0}) end From c224a73df74ae8559507421ee50e82bc1f85b61f Mon Sep 17 00:00:00 2001 From: Wiktor Perskawiec Date: Sat, 14 Dec 2024 18:22:09 +0100 Subject: [PATCH 2/4] Add Polish translation (#151) --- 3d_armor/locale/3d_armor.pl.tr | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 3d_armor/locale/3d_armor.pl.tr diff --git a/3d_armor/locale/3d_armor.pl.tr b/3d_armor/locale/3d_armor.pl.tr new file mode 100644 index 0000000..2e3815b --- /dev/null +++ b/3d_armor/locale/3d_armor.pl.tr @@ -0,0 +1,7 @@ +# textdomain: 3d_armor +Radiation=Promieniowanie +Level=Poziom +Heal=Uzdrawianie +Fire=Ogień +Your @1 is almost broken!=Twój @1 jest prawie zepsuty! +Your @1 got destroyed!=Twój @1 został zniszczony! From 082e866274632c96c713817683e07cdafff81c93 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Fri, 27 Dec 2024 21:43:08 +0100 Subject: [PATCH 3/4] Update player_api model registration Ensures correct eye position and collision box. Values taken from the player_api 'character.b3d' model. --- 3d_armor/init.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/3d_armor/init.lua b/3d_armor/init.lua index 6718b97..2bd70a6 100644 --- a/3d_armor/init.lua +++ b/3d_armor/init.lua @@ -296,16 +296,21 @@ player_api.register_model("3d_armor_character.b3d", { }, animations = { stand = {x=0, y=79}, - lay = {x=162, y=166}, + lay = {x=162, y=166, eye_height = 0.3, override_local = true, + collisionbox = {-0.6, 0.0, -0.6, 0.6, 0.3, 0.6}}, walk = {x=168, y=187}, mine = {x=189, y=198}, walk_mine = {x=200, y=219}, - sit = {x=81, y=160}, + sit = {x=81, y=160, eye_height = 0.8, override_local = true, + collisionbox = {-0.3, 0.0, -0.3, 0.3, 1.0, 0.3}}, -- compatibility w/ the emote mod wave = {x = 192, y = 196, override_local = true}, point = {x = 196, y = 196, override_local = true}, freeze = {x = 205, y = 205, override_local = true}, }, + collisionbox = {-0.3, 0.0, -0.3, 0.3, 1.7, 0.3}, + -- stepheight: use default + eye_height = 1.47, }) minetest.register_on_player_receive_fields(function(player, formname, fields) From a586aeee0c4e4d80766da3c096d80c024c40a29f Mon Sep 17 00:00:00 2001 From: mal Date: Tue, 4 Mar 2025 14:59:08 +0000 Subject: [PATCH 4/4] Update mod.conf (#157) * Update mod.conf description changed from wood to nether * Update mod.conf Fixed typo from my previous PR. --- armor_nether/mod.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armor_nether/mod.conf b/armor_nether/mod.conf index 3e99b55..ede62d6 100644 --- a/armor_nether/mod.conf +++ b/armor_nether/mod.conf @@ -1,4 +1,4 @@ name = armor_nether depends = 3d_armor optional_depends = nether -description = Adds craftable wood armor. +description = Adds craftable nether armor.