1
0
mirror of https://github.com/Splizard/minetest-mod-snow.git synced 2025-06-30 23:30:22 +02:00

Small fixes for the latest version of minetest.

This commit is contained in:
Splizard
2015-01-12 11:12:51 +13:00
parent 37ecfd02a8
commit f99ba3a1f6
3 changed files with 8 additions and 1 deletions

View File

@ -48,7 +48,7 @@ local function loadConfig(path)
io.close(file)
for line in io.lines(path) do
if line:sub(1,1) ~= "#" then
i, v = line:match("^(%S*) = (%S*)")
local i, v = line:match("^(%S*) = (%S*)")
if i and v then
if v == "true" then v = true end
if v == "false" then v = false end