Skip to content

Commit d5c7fae

Browse files
committed
Fixed a warning with /simc output if you use | in any of your loadouts
1 parent 5a556bc commit d5c7fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/SimulationCraft.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function Module:PrintSimcProfile()
7575
customLoadoutsString = string.format(
7676
"%s# Saved Loadout: %s\n# talents=%s\n",
7777
customLoadoutsString,
78-
loadout.name,
78+
loadout.name:gsub("||", "|"),
7979
importString
8080
);
8181
end

0 commit comments

Comments
 (0)