diff options
author | 2017-12-20 21:16:32 -0600 | |
---|---|---|
committer | 2017-12-20 21:16:32 -0600 | |
commit | da0c536130cb3b45c7f35d57eb05ced5d8017be5 (patch) | |
tree | 0bf45485eda0f185f3e02c67c3a87a72a830c393 /plugins/data | |
parent | ffad25e0e7e4b86995491dec41a2ec6c57a5dec5 (diff) |
fmtowns_cd: hand fix rbisland (nw)
load_dat.lua: fix crlf issue (nw)
selsoft: fix off-by-one crash (nw)
Diffstat (limited to 'plugins/data')
-rw-r--r-- | plugins/data/load_dat.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/data/load_dat.lua b/plugins/data/load_dat.lua index d1d57093d47..fd53b610d4a 100644 --- a/plugins/data/load_dat.lua +++ b/plugins/data/load_dat.lua @@ -91,7 +91,7 @@ function datfile.open(file, vertag, fixupcb) local function iter() local tag1, tag2, data, start, inblock = false while not data do - local spos, epos, match = buffer:find("\n($[^\n]*)", pos) + local spos, epos, match = buffer:find("\n($[^\n\r]*)", pos) if not spos then return nil end |