Mercurial > wow > reaction
comparison Defaults.lua @ 21:90bf38d48efd
committing changes to obsolete 0.4 series
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Fri, 07 Mar 2008 21:54:26 +0000 |
parents | f3a7bfebc283 |
children |
comparison
equal
deleted
inserted
replaced
20:2f3e45fcb9e2 | 21:90bf38d48efd |
---|---|
118 -- ... except on the main bar extra pages, which map directly to the default shapeshift IDs | 118 -- ... except on the main bar extra pages, which map directly to the default shapeshift IDs |
119 -- rather than mirroring the multi action bars, to give access to all 120 actions | 119 -- rather than mirroring the multi action bars, to give access to all 120 actions |
120 local bars = ReAction_DefaultBlizzardBars | 120 local bars = ReAction_DefaultBlizzardBars |
121 | 121 |
122 for i = 1, 12 do | 122 for i = 1, 12 do |
123 bars[1].btnConfig.ids[i] = { | 123 bars[1].btnConfig.buttons[i] = { |
124 i, | 124 id = i, |
125 72+i, | 125 actions = { |
126 84+i, | 126 i, |
127 96+i, | 127 72+i, |
128 108+i, | 128 84+i, |
129 12+i | 129 96+i, |
130 108+i, | |
131 12+i | |
132 } | |
130 } | 133 } |
131 end | 134 end |
132 | 135 |
133 for i = 1, 10 do | 136 for i = 1, 10 do |
134 bars[10].btnConfig.ids[i] = { i } | 137 bars[10].btnConfig.buttons[i] = { id = i } |
135 end | 138 end |
136 | 139 |
137 | 140 |