- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
if (!Player.instance.friendMode && (this._complete || (this._wait == 0
&& !this._actionProgress
&& this.data.step
&& this.data.step.tags.find(BSequenceStep.TAG_INDICATOR)
&& this.data.step.waitTimeMs > 0
)
)
) {
if (!this._ico) {
if (!this._complete && (this.buildable.tags.find(Buildable.TAG_CREATURE) ||
this.buildable.tags.find(Buildable.TAG_BUSH) ||
this.buildable.tags.find(Buildable.TAG_CROP))) {
this._ico = new GameObjectIco(GameObjectIco.TYPE_TALK, this);
}
else {
this._ico = new GameObjectIco(GameObjectIco.TYPE_REWARD, this);
}
alignIco();
}
}
else {
this.removeIco();
}
если текущее состояние было, например, BuildingStateComplete, то его метод growABush() создавал бы новый куст, а если состояние было BuildingStateBusy - то ошибка / игнор и т.п.
> new GameObjectIco(GameObjectIco.TYPE_TALK, this);
Главгер разговаривает с кустами и посевами?
http://pastie.org/private/dftkc3rxqardwiglbr0nw
Я плеать два месяца разбиралась в перерывах в багфиксинге как оно работает. Сейчас пятая попытка убийства.