Mercurial > wow > worldplan
comparison ClassPlan.lua @ 106:1197c8825eda
- remove 7.2.5 changes from live
author | Nenue |
---|---|
date | Sun, 28 May 2017 19:58:56 -0400 |
parents | 9f664a0ef8a8 |
children | b2be2de2b133 |
comparison
equal
deleted
inserted
replaced
105:9f664a0ef8a8 | 106:1197c8825eda |
---|---|
53 playerFirst = false, | 53 playerFirst = false, |
54 prototypes = {}, | 54 prototypes = {}, |
55 Queued = {}, | 55 Queued = {}, |
56 Timers = {}, | 56 Timers = {}, |
57 ReportChunks = {}, | 57 ReportChunks = {}, |
58 maxItems = 12 | |
59 } | 58 } |
60 ClassPlanHandlerBase = { | 59 ClassPlanHandlerBase = { |
61 numBlocks = 0, | 60 numBlocks = 0, |
62 isStale = true, | 61 isStale = true, |
63 maxItems = 10 | 62 maxItems = 10 |
116 end) | 115 end) |
117 self.FadeIn:SetScript('OnPlay', function() | 116 self.FadeIn:SetScript('OnPlay', function() |
118 print('FadeIn.OnPlay()') | 117 print('FadeIn.OnPlay()') |
119 self.isAnimating = true | 118 self.isAnimating = true |
120 self.data.IsShown = true | 119 self.data.IsShown = true |
120 self:SetShown(true) | |
121 end) | 121 end) |
122 self.FadeIn:SetScript('OnStop', OnStopped) | 122 self.FadeIn:SetScript('OnStop', OnStopped) |
123 | 123 |
124 --hooksecurefunc(C_Garrison, 'RequestLandingPageShipmentInfo', function() | 124 --hooksecurefunc(C_Garrison, 'RequestLandingPageShipmentInfo', function() |
125 -- WorldPlan:print("Requesting shipments data.") | 125 -- WorldPlan:print("Requesting shipments data.") |
319 self.data.IsShown = false | 319 self.data.IsShown = false |
320 self.FadeOut:Play() | 320 self.FadeOut:Play() |
321 else | 321 else |
322 print('fade in') | 322 print('fade in') |
323 self.data.IsShown = true | 323 self.data.IsShown = true |
324 self:SetShown(true) | |
325 self.FadeIn:Play() | 324 self.FadeIn:Play() |
326 end | 325 end |
327 end | 326 end |
328 | 327 |
329 | 328 |