Skip to content

Commit 5403d1c

Browse files
committed
fix bug concatenating strings
1 parent 5eeb965 commit 5403d1c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Loenn/consts/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
return require("utils.version_parser")("1.4.2")
1+
return require("utils.version_parser")("1.4.3")

Loenn/scripts/paste_stylegrounds.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ function script.prerun(args)
6262
end
6363
if args.addTags ~= "" then
6464
if style.tag ~= "" then
65-
style.tag = style.tag + ','
65+
style.tag = style.tag .. ','
6666
end
67-
style.tag = style.tag + args.addTags
67+
style.tag = style.tag .. args.addTags
6868
end
6969
table.insert(data.newFg, style)
7070
end

everest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Name: AnotherLoennPlugin
2-
Version: 1.4.2
2+
Version: 1.4.3

0 commit comments

Comments
 (0)