vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | local locals = KC_ITEMS_LOCALS.modules.auction |
2 | local map = KC_ITEMS_LOCALS.maps.enabled |
||
3 | |||
4 | function KC_Auction:short() |
||
5 | local status = self:TogOpt(self.optPath, "short"); |
||
6 | self:Result(locals.msg.short, status, map); |
||
7 | end |
||
8 | |||
9 | function KC_Auction:single() |
||
10 | local status = self:TogOpt(self.optPath, "single"); |
||
11 | self:Result(locals.msg.single, status, map); |
||
12 | end |
||
13 | |||
14 | function KC_Auction:showbid() |
||
15 | local status = self:TogOpt(self.optPath, "showbid"); |
||
16 | self:Result(locals.msg.bid, status, map); |
||
17 | end |
||
18 | |||
19 | function KC_Auction:showstats() |
||
20 | local status = self:TogOpt(self.optPath, "showstats"); |
||
21 | self:Result(locals.msg.stats, status, map); |
||
22 | end |