Indent with tabs instead of spaces.

This commit is contained in:
gix_
2008-11-29 01:30:51 +00:00
parent da95c03ba9
commit 9e030b41cc

View File

@ -11,12 +11,12 @@ local L = DogTag_Unit.L
DogTag:AddTag("Unit", "Combos", {
code = function (unit, target)
if unit and target then
return GetComboPoints(unit, target)
else
return GetComboPoints(UnitHasVehicleUI("player") and "vehicle" or "player", "target")
end
end,
if unit and target then
return GetComboPoints(unit, target)
else
return GetComboPoints(UnitHasVehicleUI("player") and "vehicle" or "player", "target")
end
end,
arg = {
'unit', 'string;undef', '@undef',
'target', 'string;undef', '@undef'