From 408e33b76f51bf68bacf8b9e9f7268de264978c2 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 12 Aug 2023 09:53:23 +0200 Subject: [PATCH] Add missing 'than' in comment --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 86f1997..44ffb47 100644 --- a/init.lua +++ b/init.lua @@ -322,7 +322,7 @@ minetest.register_on_generated(function(minp, maxp, seed) --[[ Make sure the pyramid doesn't bleed outside of maxp, so it doesn't get placed incompletely by the mapgen. This creates a bias somewhat, as this means there are some coordinates in - which pyramids cannot spawn. But it's still better to have broken pyramids. + which pyramids cannot spawn. But it's still better than to have broken pyramids. ]] local limit = function(pos, maxp) pos.x = math.min(pos.x, maxp.x - PYRA_W+1)