Global ID -> Id rename

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot
2011-01-15 20:53:43 +01:00
parent 4d7b10c59d
commit 550e518848
8 changed files with 35 additions and 36 deletions

View File

@@ -40,7 +40,7 @@ public class BlockCanBuildEvent extends BlockEvent {
return Material.getMaterial(material);
}
public int getMaterialID() {
public int getMaterialId() {
return material;
}
}

View File

@@ -21,9 +21,9 @@ public class BlockPhysicsEvent extends BlockEvent {
/**
* Gets the type of block that changed, causing this event
*
* @return Changed block's type ID
* @return Changed block's type id
*/
public int getChangedTypeID() {
public int getChangedTypeId() {
return changed;
}