Skip to content

Commit

Permalink
remove @{""} string
Browse files Browse the repository at this point in the history
  • Loading branch information
pali6 committed Apr 18, 2023
1 parent 415c1fe commit f5ee69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/z_dmm_suite/reader.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dmm_suite
var startGridPos = findtext(dmm_text, "\n\n(1,1,") // Safe because \n not allowed in strings in dmm
var startData = findtext(dmm_text, "\"")
var linesText = copytext(dmm_text, startData + 1, startGridPos)
var /list/modelLines = splittext(linesText, regex(@{"\n\""}))
var /list/modelLines = splittext(linesText, regex("\n\""))
for(var/modelLine in modelLines) // "aa" = (/path{key = value; key = value},/path,/path)\n
var endQuote = findtext(modelLine, quote, 2, 0)
if(endQuote <= 1)
Expand Down

0 comments on commit f5ee69e

Please sign in to comment.