Returns true if the current rain strength is greater than 0.2
()
| 3561 | * Returns true if the current rain strength is greater than 0.2 |
| 3562 | */ |
| 3563 | public boolean isRaining() |
| 3564 | { |
| 3565 | return (double)this.getRainStrength(1.0F) > 0.2D; |
| 3566 | } |
| 3567 | |
| 3568 | public boolean canLightningStrike(BlockPos strikePosition) |
| 3569 | { |
no test coverage detected