diff --git a/Artemis/Artemis/Modules/Games/Dota2/Dota2Model.cs b/Artemis/Artemis/Modules/Games/Dota2/Dota2Model.cs index 1f4862088..d0c1f362f 100644 --- a/Artemis/Artemis/Modules/Games/Dota2/Dota2Model.cs +++ b/Artemis/Artemis/Modules/Games/Dota2/Dota2Model.cs @@ -50,8 +50,8 @@ namespace Artemis.Modules.Games.Dota2 { Initialized = false; _topRow = MainManager.KeyboardManager.ActiveKeyboard.KeyboardRegions.First(r => r.RegionName == "TopRow"); - HealthRect = new KeyboardRectangle(MainManager.KeyboardManager.ActiveKeyboard, 0, _topRow.TopLeft.X, - new List(), + HealthRect = new KeyboardRectangle(MainManager.KeyboardManager.ActiveKeyboard, 0, _topRow.TopLeft.X, + new List(), LinearGradientMode.Horizontal) { Height = Scale, ContainedBrush = false }; MainManager.GameStateWebServer.GameDataReceived += HandleGameData; @@ -67,6 +67,15 @@ namespace Artemis.Modules.Games.Dota2 UpdateAbilities(); if (Settings.ShowHealth) UpdateHealth(); + /* + * if (Settings.ShowDayCycle) + * UpdateDay(); + * if (Settings.ShowMana) //Not sure if this is in the Json. Will check when I get home + * UpdateMana(); + * if (Settings.CanCastItems) + * UpdateItems(); + * if (Settings.) //Add something + */ } private void UpdateHealth()