root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/model/gameobjects/player/Player.java
| 2242 | 2343 | ||
|---|---|---|---|
104 | private int flightDistance; | 104 | private int flightDistance; |
105 | private Summon summon; | 105 | private Summon summon; |
106 | private Kisk kisk; | 106 | private Kisk kisk; |
107 | private Prices prices; | ||
107 | 108 | ||
109 | |||
108 | private Map<Integer, ItemCooldown> itemCoolDowns; | 110 | private Map<Integer, ItemCooldown> itemCoolDowns; |
109 | 111 | ||
110 | /** | 112 | /** |
... | ... | ||
125 | this.playerCommonData = plCommonData; | 127 | this.playerCommonData = plCommonData; |
126 | this.playerAppearance = appereance; | 128 | this.playerAppearance = appereance; |
127 | 129 | ||
130 | this.prices = new Prices(); | ||
128 | this.requester = new ResponseRequester(this); | 131 | this.requester = new ResponseRequester(this); |
129 | this.questStateList = new QuestStateList(); | 132 | this.questStateList = new QuestStateList(); |
130 | this.titleList = new TitleList(); | 133 | this.titleList = new TitleList(); |
131 | controller.setOwner(this); | 134 | controller.setOwner(this); |
132 | |||
133 | } | 135 | } |
134 | 136 | ||
135 | public PlayerCommonData getCommonData() | 137 | public PlayerCommonData getCommonData() |
... | ... | ||
1195 | return; | 1197 | return; |
1196 | itemCoolDowns.remove(itemMask); | 1198 | itemCoolDowns.remove(itemMask); |
1197 | } | 1199 | } |
1200 | |||
1201 | /** | ||
1202 | * @return prices | ||
1203 | */ | ||
1204 | public Prices getPrices() | ||
1205 | { | ||
1206 | return this.prices; | ||
1207 | } | ||
1198 | } | 1208 | } |
Download diff