- Fixed ticket #51: API Call 'GetCombat("overall")' wasn't returning the overall combat object.

- Fixed ticket #50: issue opening icon selection frame.
- Added 'spinal healing injector' on custom display 'Health Potion & Stone'.
This commit is contained in:
Tercio
2015-08-10 15:35:37 -03:00
parent 115e80a3e4
commit fb6620c9e5
5 changed files with 23 additions and 18 deletions
+2 -2
View File
@@ -3775,7 +3775,7 @@
return _current_combat
elseif (_type (_combat) == "number") then
if (_combat == -1) then --> overall
return _overall_combat
return _detalhes.tabela_overall
elseif (_combat == 0) then --> current
return _current_combat
else
@@ -3783,7 +3783,7 @@
end
elseif (_type (_combat) == "string") then
if (_combat == "overall") then
return _overall_combat
return _detalhes.tabela_overall
elseif (_combat == "current") then
return _current_combat
end