| 356 | } |
| 357 | |
| 358 | TileDamageParameters MaterialDatabase::modDamageParameters(ModId modId) const { |
| 359 | if (!isRealMod(modId)) |
| 360 | return {}; |
| 361 | else |
| 362 | return getModInfo(modId)->damageParameters; |
| 363 | } |
| 364 | |
| 365 | bool MaterialDatabase::modBreaksWithTile(ModId modId) const { |
| 366 | if (!isRealMod(modId)) |
no test coverage detected