mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Use absolute value for bouncy in collision (#11969)
* use abs(bouncy) in collision * test case for negative bouncy * send abs(bouncy) to old clients
This commit is contained in:
parent
258ae99491
commit
5d0b18a0d0
3 changed files with 10 additions and 4 deletions
|
@ -252,9 +252,9 @@ for i=-100, 100, 25 do
|
|||
end
|
||||
|
||||
-- Bouncy nodes (various bounce levels)
|
||||
for i=20, 180, 20 do
|
||||
for i=-140, 180, 20 do
|
||||
local val = math.floor(((i-20)/200)*255)
|
||||
minetest.register_node("testnodes:bouncy"..i, {
|
||||
minetest.register_node(("testnodes:bouncy"..i):gsub("-","NEG"), {
|
||||
description = S("Bouncy Node (@1%)", i),
|
||||
groups = {bouncy=i, dig_immediate=3},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue