3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Added yet another method to BlockType (rails)

Dieser Commit ist enthalten in:
Wizjany 2011-05-11 20:04:29 -04:00
Ursprung 9f86c99a28
Commit e2c17cbf46

Datei anzeigen

@ -520,6 +520,18 @@ public enum BlockType {
|| id == 77; // Button
}
/**
* Checks if the id is that of one of the rail types
*
* @param id
* @return
*/
public static boolean isRailBlock(int id) {
return id == 27 // Powered rail
|| id == 28 // Detector rail
|| id == 66; // Normal rail
}
/**
* Get the block or item that would have been dropped. If nothing is
* dropped, 0 will be returned. If the block should not be destroyed