internal void CraftingRecipeSelected(Game game, int x, int y, int z, IntRef recipe)
 {
     if (recipe == null)
     {
         return;
     }
     game.SendPacketClient(ClientPackets.Craft(x, y, z, recipe.value));
 }