* Mark a badge a seen (used) by a feature. */
| 234 | * Mark a badge a seen (used) by a feature. |
| 235 | */ |
| 236 | void MarkBadgeSeen(BadgeID index, GrfSpecFeature feature) |
| 237 | { |
| 238 | Badge *b = GetBadge(index); |
| 239 | assert(b != nullptr); |
| 240 | b->features.Set(feature); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Append copyable badges from a list onto another. |
no test coverage detected