added some missing legacy ID constants

i'm not sure why my script missed these
This commit is contained in:
Dylan K. Taylor 2019-07-26 19:08:50 +01:00
parent a91a86bf1d
commit 7275952fc2
2 changed files with 4 additions and 2 deletions

View File

@ -477,7 +477,7 @@ interface BlockLegacyIds{
public const BLAST_FURNACE = 451; public const BLAST_FURNACE = 451;
public const STONECUTTER_BLOCK = 452; public const STONECUTTER_BLOCK = 452;
public const SMOKER = 453; public const SMOKER = 453;
public const LIT_SMOKER = 454;
public const CARTOGRAPHY_TABLE = 455; public const CARTOGRAPHY_TABLE = 455;
public const FLETCHING_TABLE = 456; public const FLETCHING_TABLE = 456;
public const SMITHING_TABLE = 457; public const SMITHING_TABLE = 457;
@ -492,5 +492,6 @@ interface BlockLegacyIds{
public const JIGSAW = 466; public const JIGSAW = 466;
public const WOOD = 467; public const WOOD = 467;
public const COMPOSTER = 468; public const COMPOSTER = 468;
public const LIT_BLAST_FURNACE = 469;
} }

View File

@ -25,6 +25,7 @@ namespace pocketmine\item;
interface ItemIds{ interface ItemIds{
public const LIT_BLAST_FURNACE = -214;
public const COMPOSTER = -213; public const COMPOSTER = -213;
public const WOOD = -212; public const WOOD = -212;
public const JIGSAW = -211; public const JIGSAW = -211;
@ -39,7 +40,7 @@ interface ItemIds{
public const SMITHING_TABLE = -202; public const SMITHING_TABLE = -202;
public const FLETCHING_TABLE = -201; public const FLETCHING_TABLE = -201;
public const CARTOGRAPHY_TABLE = -200; public const CARTOGRAPHY_TABLE = -200;
public const LIT_SMOKER = -199;
public const SMOKER = -198; public const SMOKER = -198;
public const STONECUTTER_BLOCK = -197; public const STONECUTTER_BLOCK = -197;
public const BLAST_FURNACE = -196; public const BLAST_FURNACE = -196;