SteamWar/FightSystem
Archiviert
13
1
Dieses Repository wurde am 2024-08-05 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
FightSystem/FightSystem_8/src/de/steamwar/fightsystem/utils/WaterRemover_8.java
Lixfel 684ed70219 Fixing Waterremover and deadlock
Signed-off-by: Lixfel <agga-games@gmx.de>
2020-02-10 10:32:21 +01:00

14 Zeilen
328 B
Java

package de.steamwar.fightsystem.utils;
import org.bukkit.Material;
import org.bukkit.block.Block;
public class WaterRemover_8 {
private WaterRemover_8(){}
static boolean isWater(Block block){
Material type = block.getType();
return type == Material.WATER || type == Material.STATIONARY_WATER;
}
}