Changed default values for the velocity.

master
Robert Zenz 2015-12-12 13:12:43 +01:00
parent 17f5ec7449
commit 672777120e
3 changed files with 6 additions and 6 deletions

4
README
View File

@ -25,6 +25,6 @@ The system can be configured by adding settings to the `minetest.conf`:
# stack: The dropped stacks are dropped as they are.
autodrops_split = single
# The maximum velocity of newly dropped items, defaults to "4, 3, 4".
autodrops_velocity = 4, 3, 4
# The maximum velocity of newly dropped items, defaults to "2, 4, 2".
autodrops_velocity = 2, 4, 2

View File

@ -87,7 +87,7 @@
</tr>
<tr>
<td class="name" nowrap><a href="#velocity">velocity</a></td>
<td class="summary">The maximum velocity for new spawned items, defaults to 4, 3, 4.</td>
<td class="summary">The maximum velocity for new spawned items, defaults to 2, 4, 2.</td>
</tr>
</table>
@ -273,7 +273,7 @@
<strong>velocity</strong>
</dt>
<dd>
The maximum velocity for new spawned items, defaults to 4, 3, 4.
The maximum velocity for new spawned items, defaults to 2, 4, 2.

View File

@ -35,8 +35,8 @@ autodrops = {
-- "single" splits the provided stack into individual items.
split = settings.get_string("autodrops_split", "single"),
--- The maximum velocity for new spawned items, defaults to 4, 3, 4.
velocity = settings.get_pos3d("autodrops_velocity", { x = 4, y = 3, z = 4 })
--- The maximum velocity for new spawned items, defaults to 2, 4, 2.
velocity = settings.get_pos3d("autodrops_velocity", { x = 2, y = 4, z = 2 })
}