From 9dc9ab3a39240838897067a3bb27804002c200a8 Mon Sep 17 00:00:00 2001 From: HybridDog Date: Sun, 21 Mar 2021 18:27:41 +0100 Subject: [PATCH] Small line-to-long style fix and update .luacheckrc --- .luacheckrc | 11 ++++++++++- src/nodes.lua | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 152b395..6d01e88 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,5 +1,5 @@ read_globals = { - "dump", "vector", "minetest", + "dump", "vector", "table", "math", "PseudoRandom", "VoxelArea", "stairs", "stairsplus", "skins", "treecapitator", default = { @@ -10,6 +10,15 @@ read_globals = { } }, other_fields = true + }, + minetest = { + fields = { + registered_nodes = { + read_only = false, + other_fields = true + } + }, + other_fields = true } } globals = {"snow"} diff --git a/src/nodes.lua b/src/nodes.lua index 962d664..81fbbfd 100644 --- a/src/nodes.lua +++ b/src/nodes.lua @@ -311,7 +311,8 @@ nodedef = { -- by player position. ~ LazyJ -- I made this a little harder to dig than snow blocks because -- I imagine snow brick as being much more dense and solid than fluffy snow. ~ LazyJ - groups = {cracky=2, crumbly=2, choppy=2, oddly_breakable_by_hand=2, melts=1, icemaker=1, cooks_into_ice=1, cools_lava = 1, snowy = 1}, + groups = {cracky=2, crumbly=2, choppy=2, oddly_breakable_by_hand=2, melts=1, + icemaker=1, cooks_into_ice=1, cools_lava = 1, snowy = 1}, --Let's use the new snow sounds instead of the old grass sounds. ~ LazyJ sounds = default.node_sound_snow_defaults(), -- The "on_construct" part below, thinking in terms of layers,