forked from mirror/OpenTTD
(svn r74) -Fix: [1009631] Wrong multihead selling (Bodewes)
This commit is contained in:
@@ -777,7 +777,8 @@ int32 CmdSellRailWagon(int x, int y, uint32 flags, uint32 p1, uint32 p2)
|
|||||||
if (p2 != 1) {
|
if (p2 != 1) {
|
||||||
// sell last part of multiheaded?
|
// sell last part of multiheaded?
|
||||||
last = GetLastVehicleInChain(v);
|
last = GetLastVehicleInChain(v);
|
||||||
if (is_firsthead_sprite(last->spritenum))
|
// Check if the end-part is the same engine and check if it is the rear-end
|
||||||
|
if (last->engine_type != first->engine_type || is_firsthead_sprite(last->spritenum))
|
||||||
last = NULL;
|
last = NULL;
|
||||||
} else {
|
} else {
|
||||||
last = NULL;
|
last = NULL;
|
||||||
|
Reference in New Issue
Block a user