Skip to content

Commit

Permalink
Updated TOC and changed to semi-colon separators in export log
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluephobia committed Oct 16, 2023
1 parent f0fb547 commit 244f891
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Log.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ function SessionLog:Dump()
local assignmentCount = #self.assignments
if assignmentCount == 0 then return "" end

local header = "date,itemID,itemName,player,note"
local header = "date;itemID;itemName;player;note"
local lines = { header }

for i = 1, assignmentCount do
table.insert(lines, table.concat(self.assignments[i], ","))
table.insert(lines, table.concat(self.assignments[i], ";"))
end

return table.concat(lines, "\n")
Expand Down
4 changes: 2 additions & 2 deletions src/NotaLoot.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Interface: 30402
## Interface: 30403
## Title: Nota Loot
## Notes: Loot distribution helper developed for nota
## Author: Bluephobia
## Version: 4.0.2
## Version: 4.0.3
## SavedVariables: NotaLootPrefs

embeds.xml
Expand Down

0 comments on commit 244f891

Please sign in to comment.