grfmsg(GMS_WARN, "NewSpriteGroup: sprite set feature 0x%02X does not match action feature 0x%02X, skipping.",
_cur_grffile->spriteset_feature, feature);
/* Clear this group's reference */
_cur_grffile->spritegroups[setid] = NULL;
return;
}
switch (type) {
/* Deterministic Sprite Group */
case 0x81: // Self scope, byte
@@ -1449,11 +1457,6 @@ static void NewSpriteGroup(byte *buf, in
return;
}
if (_cur_grffile->spriteset_feature != feature) {
grfmsg(GMS_ERROR, "NewSpriteGroup: Group feature 0x%02X doesn't match set feature 0x%X! Playing it risky and trying to use it anyway.", feature, _cur_grffile->spriteset_feature);
// return; // XXX: we can't because of MB's newstats.grf --pasky