diff options
author | ubq323 <ubq323@ubq323.website> | 2025-02-25 23:36:28 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2025-02-25 23:36:28 +0000 |
commit | e03937bbe51f3dd8e0d8ecc732999f5c4578fa94 (patch) | |
tree | 7c4e9c9427eade79d122d1175e273cc1eae170be /config.lua | |
parent | 7d396195e4f97a094610fecc658aed6a67fd464d (diff) |
mostly getting it to just go, also start on discord
Diffstat (limited to 'config.lua')
-rw-r--r-- | config.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ local function parse_file(file) local line_handler = function() error("line outside of block") end for line in file:lines() do - line = line:gsub("#.*$",""):gsub("^%s*",""):gsub("%s*$","") + line = line:gsub(";.*$",""):gsub("^%s*",""):gsub("%s*$","") if line == '' then goto next end local block_type, block_name = line:match"%[%s*(%S+)%s+(%S+)%s*%]" |