Change 'int blkid' to 'String material' for block and sign-change events.

This commit is contained in:
Mitch Talmadge 2019-12-19 21:34:32 -07:00
parent 5dbb58dfda
commit a3cb46e286
6 changed files with 20 additions and 19 deletions

View file

@ -135,7 +135,7 @@ public interface DynmapCommonAPI {
public boolean testIfPlayerInfoProtected();
/**
* Process sign change
* @param blkid - block ID
* @param material - block's Material enum value as a string
* @param world - world name
* @param x - x coord
* @param y - y coord
@ -143,5 +143,5 @@ public interface DynmapCommonAPI {
* @param lines - sign lines (input and output)
* @param playerid - player ID
*/
public void processSignChange(int blkid, String world, int x, int y, int z, String[] lines, String playerid);
public void processSignChange(String material, String world, int x, int y, int z, String[] lines, String playerid);
}