From eeb1515f7b5ed2d0a01587278553b010f3603551 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 11 Jun 2011 05:11:18 +0000 Subject: [PATCH] - fixed bug with selecting the last 4 presets. they weren't actually defined. --- IceCore.lua | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/IceCore.lua b/IceCore.lua index 8fc1779..82d1985 100644 --- a/IceCore.lua +++ b/IceCore.lua @@ -1008,5 +1008,45 @@ function IceCore.prototype:LoadPresets() barBgBlendMode = "BLEND", } + self.presets["CleanCurvesOut"] = { + barTexture = "CleanCurvesOut", + barWidth = 155, + barHeight = 220, + barProportion = 0.14, + barSpace = 1, + barBlendMode = "BLEND", + barBgBlendMode = "BLEND", + } + + self.presets["CleanTank"] = { + barTexture = "CleanTank", + barWidth = 155, + barHeight = 220, + barProportion = 0.5, + barSpace = 1, + barBlendMode = "BLEND", + barBgBlendMode = "BLEND", + } + + self.presets["PillTank"] = { + barTexture = "PillTank", + barWidth = 155, + barHeight = 220, + barProportion = 0.14, + barSpace = 1, + barBlendMode = "BLEND", + barBgBlendMode = "BLEND", + } + + self.presets["GemTank"] = { + barTexture = "GemTank", + barWidth = 155, + barHeight = 220, + barProportion = 0.19, + barSpace = 1, + barBlendMode = "BLEND", + barBgBlendMode = "BLEND", + } + end