(svn r21249) -Fix (r21240, r21236) [FS#4242]: rear ends of dualheaded engines didn't smoke nor spark (Hirundo)

This commit is contained in:
rubidium 2010-11-18 23:09:24 +00:00
parent ed04bef953
commit 40258d927f
1 changed files with 2 additions and 2 deletions

View File

@ -1871,7 +1871,7 @@ void Vehicle::UpdateVisualEffect(bool allow_power_change)
default: break;
}
if (default_effect == VE_DEFAULT) {
if (this->type == VEH_TRAIN && Train::From(this)->IsEngine()) {
if (this->type == VEH_TRAIN && !(Train::From(this)->IsWagon() || Train::From(this)->IsArticulatedPart())) {
if (e->u.rail.engclass == 0) {
/* Steam is offset by -4 units */
SB(this->vcache.cached_vis_effect, VE_OFFSET_START, VE_OFFSET_COUNT, VE_OFFSET_CENTRE - 4);
@ -1955,7 +1955,7 @@ void Vehicle::ShowVisualEffect() const
}
if (effect_type == VE_TYPE_DEFAULT) {
if (v->type == VEH_TRAIN && Train::From(v)->IsEngine()) {
if (v->type == VEH_TRAIN) {
/* Use default effect type for engine class. */
effect_type = RailVehInfo(v->engine_type)->engclass + 1;
} else {