Increase meshnode entity speed/lift limit #18

Merged
erlehmann merged 2 commits from increase-speed-limit into master 2021-09-04 00:39:11 +02:00
3 changed files with 6 additions and 6 deletions

View File

@ -110,8 +110,8 @@ adding the config name prefixed with 'meshnode_' to your minetest.conf file.
**Example:** (multiplayer defaults)
```
meshnode_max_speed = 2
meshnode_max_lift = 1
meshnode_max_speed = 8
meshnode_max_lift = 4
meshnode_yaw_amount = 0.017
meshnode_max_radius = 8
meshnode_show_in_creative = false

View File

@ -1,8 +1,8 @@
meshnode = {}
meshnode.config = {
max_speed = 2,
max_lift = 1,
max_speed = 8,
max_lift = 4,
yaw_amount = 0.017,
max_radius = 8,
show_in_creative = false,

View File

@ -1,5 +1,5 @@
meshnode_max_speed (Meshnode entity maximum speed) float 2.0
meshnode_max_lift (Meshnode entity maximum lift) float 1.0
meshnode_max_speed (Meshnode entity maximum speed) float 8.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