mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-15 18:49:10 +00:00
(svn r18868) -Fix [FS#3547](r18776): Wrong comparator.
This commit is contained in:
@@ -232,7 +232,7 @@ struct RefitOption {
|
||||
|
||||
FORCEINLINE bool operator != (const RefitOption &other) const
|
||||
{
|
||||
return other.cargo != this->cargo || other.subtype != this->subtype;
|
||||
return other.cargo != this->cargo || other.value != this->value;
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user