Advertisement
_DarkLex_

Untitled

Jul 28th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. public override void SendCraftingRecipes()
  2. {
  3.     if (Level is xCoreLevel)
  4.     {
  5.         if (!(((xCoreLevel)Level).Game is xCoreBedWars))
  6.         {
  7.             {
  8.                 McpeCraftingData craftingData = McpeCraftingData.CreateObject();
  9.                 craftingData.recipes = RecipeManager.Recipes;
  10.                 SendPackage(craftingData);
  11.             }
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement