Skip to content

Commit

Permalink
Remove some forgotten comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Slivo-fr committed Apr 21, 2024
1 parent e509666 commit 8c48ea3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tranqRotate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,12 @@ function TranqRotate:printFail(hunter, event)

local name = TranqRotate:formatPlayerName(hunter.name)
if (event == "SPELL_MISSED") then
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_MISS'], name))-- .. " missed his tranqshot!")
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_MISS'], name))
elseif(event == "SPELL_DISPEL_FAILED") then
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_RESIST'], name))-- .. " missed his tranqshot!")
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_RESIST'], name))
else
-- v1.5.1 and older do not send the event type
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_MISS_OR_RESIST'], name))-- .. " missed his tranqshot!")
TranqRotate:printPrefixedMessage(string.format(L['PRINT_FAILED_TRANQ_MISS_OR_RESIST'], name))
end
end

Expand Down

0 comments on commit 8c48ea3

Please sign in to comment.