From 839ded7a9b70a41e99ba6820f32b0876e920082f Mon Sep 17 00:00:00 2001 From: Nils Dagsson Moskopp Date: Fri, 3 Sep 2021 02:40:39 +0200 Subject: [PATCH 1/2] Increase meshnode entity speed limit from 2 to 8 --- README.md | 2 +- api.lua | 2 +- settingtypes.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89ca7c1..969f029 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ adding the config name prefixed with 'meshnode_' to your minetest.conf file. **Example:** (multiplayer defaults) ``` -meshnode_max_speed = 2 +meshnode_max_speed = 8 meshnode_max_lift = 1 meshnode_yaw_amount = 0.017 meshnode_max_radius = 8 diff --git a/api.lua b/api.lua index 2c6bd13..3180417 100644 --- a/api.lua +++ b/api.lua @@ -1,7 +1,7 @@ meshnode = {} meshnode.config = { - max_speed = 2, + max_speed = 8, max_lift = 1, yaw_amount = 0.017, max_radius = 8, diff --git a/settingtypes.txt b/settingtypes.txt index 261a902..cbd917e 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -1,4 +1,4 @@ -meshnode_max_speed (Meshnode entity maximum speed) float 2.0 +meshnode_max_speed (Meshnode entity maximum speed) float 8.0 meshnode_max_lift (Meshnode entity maximum lift) float 1.0 meshnode_yaw_amount (Meshnode entity turning step size) float 0.017 meshnode_max_radius (Meshnode entity maximum radius) int 8 -- 2.40.1 From 0495dfff9a633a477e1be8e71785a5415ac29e91 Mon Sep 17 00:00:00 2001 From: Nils Dagsson Moskopp Date: Sat, 4 Sep 2021 00:18:43 +0200 Subject: [PATCH 2/2] Increase meshnode entity lift limit from 1 to 4 --- README.md | 2 +- api.lua | 2 +- settingtypes.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 969f029..90e4b25 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ adding the config name prefixed with 'meshnode_' to your minetest.conf file. **Example:** (multiplayer defaults) ``` meshnode_max_speed = 8 -meshnode_max_lift = 1 +meshnode_max_lift = 4 meshnode_yaw_amount = 0.017 meshnode_max_radius = 8 meshnode_show_in_creative = false diff --git a/api.lua b/api.lua index 3180417..8b0f693 100644 --- a/api.lua +++ b/api.lua @@ -2,7 +2,7 @@ meshnode = {} meshnode.config = { max_speed = 8, - max_lift = 1, + max_lift = 4, yaw_amount = 0.017, max_radius = 8, show_in_creative = false, diff --git a/settingtypes.txt b/settingtypes.txt index cbd917e..42bf4f3 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -1,5 +1,5 @@ meshnode_max_speed (Meshnode entity maximum speed) float 8.0 -meshnode_max_lift (Meshnode entity maximum lift) float 1.0 +meshnode_max_lift (Meshnode entity maximum lift) float 4.0 meshnode_yaw_amount (Meshnode entity turning step size) float 0.017 meshnode_max_radius (Meshnode entity maximum radius) int 8 meshnode_show_in_creative (Meshnode entity in creative inventory) bool false -- 2.40.1