| 487 | } |
| 488 | |
| 489 | bool MaterialDatabase::isTilledMod(ModId modId) const { |
| 490 | if (!isRealMod(modId)) |
| 491 | return false; |
| 492 | return getModInfo(modId)->tilled; |
| 493 | } |
| 494 | |
| 495 | bool MaterialDatabase::isSoil(MaterialId materialId) const { |
| 496 | if (!isRealMaterial(materialId)) |
no test coverage detected