Skip to content

Commit

Permalink
fixed macro string and missing ";"
Browse files Browse the repository at this point in the history
  • Loading branch information
fuba82 committed Aug 20, 2024
1 parent aaceab8 commit 290add1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
22 changes: 20 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,25 @@ Thumbs.db
Desktop.ini

# Libraries
/libs
libs/*

# ignore .release folder
/.release
.release/*

# VisualStudioCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

# Ignore all local history of files
.history
.ionide
4 changes: 2 additions & 2 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ local function CreateOrUpdateMacro()

macroln1 = "#showtooltip "..itemUseString.."\n"
if conjureOnRightClick then
macroln2 = "/use [btn:2]"..spellNameConjureRefreshment..""..itemUseString.."\n"
macroln2 = "/use [btn:2]"..spellNameConjureRefreshment..";"..itemUseString.."\n"
else
macroln2 = "/use "..itemUseString.."\n"
end
Expand All @@ -115,7 +115,7 @@ local function CreateOrUpdateMacro()

macroln1 = "#showtooltip "..itemUseString.."\n"
if conjureOnRightClick then
macroln2 = "/use [btn:2]"..spellNameConjureRefreshment..""..itemUseString.."\n"
macroln2 = "/use [btn:2]"..spellNameConjureRefreshment..";"..itemUseString.."\n"
else
macroln2 = "/use "..itemUseString.."\n"
end
Expand Down

0 comments on commit 290add1

Please sign in to comment.