From 569e4bfa788b401d736f8fd8a1fe434ac751b66c Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 8 Mar 2024 14:49:24 +0100 Subject: [PATCH] Reduce max. rope extension length to 30 --- src/rope.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rope.lua b/src/rope.lua index 63149ed..6aa5d43 100644 --- a/src/rope.lua +++ b/src/rope.lua @@ -1,6 +1,8 @@ local rope = {} local S = minetest.get_translator("xdecor") -local MAX_ROPES = 99 + +-- Maximum length a rope can extend to +local MAX_ROPES = 30 local ropesounds = default.node_sound_leaves_defaults()