Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VuhDo
VuhDo
Commits
59e8e61c
Commit
59e8e61c
authored
May 07, 2022
by
Ivaria
Browse files
Recognize trinket slots ('13' and '14') as valid actions
parent
67d8e509
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
VuhDoLocalization_en.lua
VuhDoLocalization_en.lua
+3
-0
VuhDoToolbox.lua
VuhDoToolbox.lua
+4
-0
No files found.
VuhDoLocalization_en.lua
View file @
59e8e61c
...
...
@@ -496,3 +496,6 @@ VUHDO_I18N_DEF_BOUQUET_BAR_MANA_TANK_ONLY = "Manabars: Power (Tank Only)";
VUHDO_I18N_DEF_COUNTER_HEAL_ABSORB = "Counter: All Heal Absorb #k";
VUHDO_I18N_DEF_STATUS_HEAL_ABSORB = "Statusbar: Heal Absorb";
-- 3.135
VUHDO_I18N_TRINKET_1 = "Trinket 1";
VUHDO_I18N_TRINKET_2 = "Trinket 2";
VuhDoToolbox.lua
View file @
59e8e61c
...
...
@@ -802,6 +802,10 @@ function VUHDO_isActionValid(anActionName, anIsCustom, anIsHostile)
return
VUHDO_I18N_ITEM
,
1
,
1
,
0
.
8
,
"ITM"
;
elseif
anIsCustom
then
return
"Custom"
,
0
.
9
,
0
.
9
,
0
.
2
,
"CUS"
;
elseif
tActionLowerName
==
"13"
then
return
VUHDO_I18N_TRINKET_1
,
1
,
1
,
0
.
8
,
"TKT1"
;
elseif
tActionLowerName
==
"14"
then
return
VUHDO_I18N_TRINKET_2
,
1
,
1
,
0
.
8
,
"TKT2"
;
else
return
nil
;
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment