1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 09:29:10 +00:00

(svn r16408) -Codechange: Silence a pointless newgrf debug message.

This commit is contained in:
frosch
2009-05-23 22:24:09 +00:00
parent 7854e68b95
commit 607583f091

View File

@@ -2503,7 +2503,7 @@ static void FeatureChangeInfo(byte *buf, size_t len)
feature, numprops, engine, numinfo);
if (feature >= lengthof(handler) || handler[feature] == NULL) {
grfmsg(1, "FeatureChangeInfo: Unsupported feature %d, skipping", feature);
if (feature != GSF_CARGOS) grfmsg(1, "FeatureChangeInfo: Unsupported feature %d, skipping", feature);
return;
}