diff options
author | Anthony Zhang <azhang9@gmail.com> | 2013-04-28 19:01:24 -0400 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2013-04-28 19:01:24 -0400 |
commit | 98c5bc5c5fbd0205b3b3e4ef6c529d88c4960815 (patch) | |
tree | 2e97bcc02a84e8779313ddb36739a2f1b319e0cd /worldedit/serialization.lua | |
parent | 522edf1cd4f30b580c92b2951192f63a10b21682 (diff) |
Fix loading of schematics containing chests that had empty slots.
Diffstat (limited to 'worldedit/serialization.lua')
-rw-r--r-- | worldedit/serialization.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worldedit/serialization.lua b/worldedit/serialization.lua index d5b660b..9d201d8 100644 --- a/worldedit/serialization.lua +++ b/worldedit/serialization.lua @@ -216,7 +216,7 @@ worldedit.deserialize = function(originpos, value, env) elseif version == 4 then --current nested table format
--wip: this is a filthy hack that works surprisingly well
value = value:gsub("return%s*{", "", 1):gsub("}%s*$", "", 1)
- local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]+\")", function(s) return string.rep("@", #s) end)
+ local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]*\")", function(s) return string.rep("@", #s) end)
local startpos, startpos1, endpos = 1, 1
local nodes = {}
while true do
|