mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-02 12:24:15 +00:00
(svn r16706) -Fix (r16694): acquiring a subsidy resulted in an assertion.
This commit is contained in:
parent
e3627dabda
commit
8e804a4b6c
@ -1085,7 +1085,7 @@ static Money DeliverGoods(int num_pieces, CargoID cargo_type, StationID source,
|
||||
const Station *s_from = Station::Get(source);
|
||||
|
||||
/* Check if a subsidy applies. */
|
||||
subsidised = CheckSubsidised(s_from, s_to, cargo_type);
|
||||
subsidised = CheckSubsidised(s_from, s_to, cargo_type, company->index);
|
||||
}
|
||||
|
||||
/* Increase town's counter for some special goods types */
|
||||
|
@ -284,7 +284,7 @@ no_add:;
|
||||
InvalidateWindow(WC_SUBSIDIES_LIST, 0);
|
||||
}
|
||||
|
||||
bool CheckSubsidised(const Station *from, const Station *to, CargoID cargo_type)
|
||||
bool CheckSubsidised(const Station *from, const Station *to, CargoID cargo_type, CompanyID company)
|
||||
{
|
||||
Subsidy *s;
|
||||
TileIndex xy;
|
||||
@ -336,7 +336,7 @@ bool CheckSubsidised(const Station *from, const Station *to, CargoID cargo_type)
|
||||
InjectDParam(1);
|
||||
|
||||
char *company_name = MallocT<char>(MAX_LENGTH_COMPANY_NAME_BYTES);
|
||||
SetDParam(0, _current_company);
|
||||
SetDParam(0, company);
|
||||
GetString(company_name, STR_COMPANY_NAME, company_name + MAX_LENGTH_COMPANY_NAME_BYTES - 1);
|
||||
|
||||
SetDParamStr(0, company_name);
|
||||
|
@ -16,7 +16,7 @@ Pair SetupSubsidyDecodeParam(const Subsidy *s, bool mode);
|
||||
void DeleteSubsidyWithTown(TownID index);
|
||||
void DeleteSubsidyWithIndustry(IndustryID index);
|
||||
void DeleteSubsidyWithStation(StationID index);
|
||||
bool CheckSubsidised(const Station *from, const Station *to, CargoID cargo_type);
|
||||
bool CheckSubsidised(const Station *from, const Station *to, CargoID cargo_type, CompanyID company);
|
||||
void SubsidyMonthlyHandler();
|
||||
|
||||
#endif /* SUBSIDY_FUNC_H */
|
||||
|
Loading…
Reference in New Issue
Block a user