├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── BurritoSpigot-API ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── co │ │ │ └── aikar │ │ │ │ ├── timings │ │ │ │ ├── FullServerTickHandler.java │ │ │ │ ├── NullTimingHandler.java │ │ │ │ ├── TimedEventExecutor.java │ │ │ │ ├── Timing.java │ │ │ │ ├── TimingData.java │ │ │ │ ├── TimingHandler.java │ │ │ │ ├── TimingHistory.java │ │ │ │ ├── TimingHistoryEntry.java │ │ │ │ ├── TimingIdentifier.java │ │ │ │ ├── Timings.java │ │ │ │ ├── TimingsCommand.java │ │ │ │ ├── TimingsExport.java │ │ │ │ ├── TimingsManager.java │ │ │ │ └── UnsafeTimingHandler.java │ │ │ │ └── util │ │ │ │ ├── JSONUtil.java │ │ │ │ ├── LoadingIntMap.java │ │ │ │ ├── LoadingMap.java │ │ │ │ └── MRUMapCache.java │ │ ├── net │ │ │ └── techcable │ │ │ │ └── tacospigot │ │ │ │ └── event │ │ │ │ └── entity │ │ │ │ ├── ArrowCollideEvent.java │ │ │ │ └── SpawnerPreSpawnEvent.java │ │ └── org │ │ │ ├── bukkit │ │ │ ├── Achievement.java │ │ │ ├── Art.java │ │ │ ├── BanEntry.java │ │ │ ├── BanList.java │ │ │ ├── BlockChangeDelegate.java │ │ │ ├── Bukkit.java │ │ │ ├── ChatColor.java │ │ │ ├── Chunk.java │ │ │ ├── ChunkSnapshot.java │ │ │ ├── CoalType.java │ │ │ ├── Color.java │ │ │ ├── CropState.java │ │ │ ├── Difficulty.java │ │ │ ├── DyeColor.java │ │ │ ├── Effect.java │ │ │ ├── EntityEffect.java │ │ │ ├── FireworkEffect.java │ │ │ ├── GameMode.java │ │ │ ├── GrassSpecies.java │ │ │ ├── Instrument.java │ │ │ ├── Location.java │ │ │ ├── Material.java │ │ │ ├── NetherWartsState.java │ │ │ ├── Note.java │ │ │ ├── OfflinePlayer.java │ │ │ ├── PortalType.java │ │ │ ├── Rotation.java │ │ │ ├── SandstoneType.java │ │ │ ├── Server.java │ │ │ ├── SkullType.java │ │ │ ├── Sound.java │ │ │ ├── Statistic.java │ │ │ ├── TravelAgent.java │ │ │ ├── TreeSpecies.java │ │ │ ├── TreeType.java │ │ │ ├── UnsafeValues.java │ │ │ ├── Utility.java │ │ │ ├── Warning.java │ │ │ ├── WeatherType.java │ │ │ ├── World.java │ │ │ ├── WorldBorder.java │ │ │ ├── WorldCreator.java │ │ │ ├── WorldType.java │ │ │ ├── block │ │ │ │ ├── Banner.java │ │ │ │ ├── Beacon.java │ │ │ │ ├── Biome.java │ │ │ │ ├── Block.java │ │ │ │ ├── BlockFace.java │ │ │ │ ├── BlockState.java │ │ │ │ ├── BrewingStand.java │ │ │ │ ├── Chest.java │ │ │ │ ├── CommandBlock.java │ │ │ │ ├── ContainerBlock.java │ │ │ │ ├── CreatureSpawner.java │ │ │ │ ├── Dispenser.java │ │ │ │ ├── DoubleChest.java │ │ │ │ ├── Dropper.java │ │ │ │ ├── Furnace.java │ │ │ │ ├── Hopper.java │ │ │ │ ├── Jukebox.java │ │ │ │ ├── NoteBlock.java │ │ │ │ ├── PistonMoveReaction.java │ │ │ │ ├── Sign.java │ │ │ │ ├── Skull.java │ │ │ │ └── banner │ │ │ │ │ ├── Pattern.java │ │ │ │ │ └── PatternType.java │ │ │ ├── command │ │ │ │ ├── BlockCommandSender.java │ │ │ │ ├── Command.java │ │ │ │ ├── CommandException.java │ │ │ │ ├── CommandExecutor.java │ │ │ │ ├── CommandMap.java │ │ │ │ ├── CommandSender.java │ │ │ │ ├── ConsoleCommandSender.java │ │ │ │ ├── FormattedCommandAlias.java │ │ │ │ ├── MultipleCommandAlias.java │ │ │ │ ├── PluginCommand.java │ │ │ │ ├── PluginCommandYamlParser.java │ │ │ │ ├── PluginIdentifiableCommand.java │ │ │ │ ├── ProxiedCommandSender.java │ │ │ │ ├── RemoteConsoleCommandSender.java │ │ │ │ ├── SimpleCommandMap.java │ │ │ │ ├── TabCommandExecutor.java │ │ │ │ ├── TabCompleter.java │ │ │ │ ├── TabExecutor.java │ │ │ │ └── defaults │ │ │ │ │ ├── AchievementCommand.java │ │ │ │ │ ├── BanCommand.java │ │ │ │ │ ├── BanIpCommand.java │ │ │ │ │ ├── BanListCommand.java │ │ │ │ │ ├── BukkitCommand.java │ │ │ │ │ ├── ClearCommand.java │ │ │ │ │ ├── DefaultGameModeCommand.java │ │ │ │ │ ├── DeopCommand.java │ │ │ │ │ ├── DifficultyCommand.java │ │ │ │ │ ├── EffectCommand.java │ │ │ │ │ ├── EnchantCommand.java │ │ │ │ │ ├── ExpCommand.java │ │ │ │ │ ├── GameModeCommand.java │ │ │ │ │ ├── GameRuleCommand.java │ │ │ │ │ ├── GiveCommand.java │ │ │ │ │ ├── HelpCommand.java │ │ │ │ │ ├── KickCommand.java │ │ │ │ │ ├── KillCommand.java │ │ │ │ │ ├── ListCommand.java │ │ │ │ │ ├── MeCommand.java │ │ │ │ │ ├── OpCommand.java │ │ │ │ │ ├── PardonCommand.java │ │ │ │ │ ├── PardonIpCommand.java │ │ │ │ │ ├── PlaySoundCommand.java │ │ │ │ │ ├── PluginsCommand.java │ │ │ │ │ ├── ReloadCommand.java │ │ │ │ │ ├── SaveCommand.java │ │ │ │ │ ├── SaveOffCommand.java │ │ │ │ │ ├── SaveOnCommand.java │ │ │ │ │ ├── SayCommand.java │ │ │ │ │ ├── ScoreboardCommand.java │ │ │ │ │ ├── SeedCommand.java │ │ │ │ │ ├── SetIdleTimeoutCommand.java │ │ │ │ │ ├── SetWorldSpawnCommand.java │ │ │ │ │ ├── SpawnpointCommand.java │ │ │ │ │ ├── SpreadPlayersCommand.java │ │ │ │ │ ├── StopCommand.java │ │ │ │ │ ├── TeleportCommand.java │ │ │ │ │ ├── TellCommand.java │ │ │ │ │ ├── TestForCommand.java │ │ │ │ │ ├── TimeCommand.java │ │ │ │ │ ├── TimingsCommand.java │ │ │ │ │ ├── ToggleDownfallCommand.java │ │ │ │ │ ├── VanillaCommand.java │ │ │ │ │ ├── VersionCommand.java │ │ │ │ │ ├── WeatherCommand.java │ │ │ │ │ └── WhitelistCommand.java │ │ │ ├── configuration │ │ │ │ ├── Configuration.java │ │ │ │ ├── ConfigurationOptions.java │ │ │ │ ├── ConfigurationSection.java │ │ │ │ ├── InvalidConfigurationException.java │ │ │ │ ├── MemoryConfiguration.java │ │ │ │ ├── MemoryConfigurationOptions.java │ │ │ │ ├── MemorySection.java │ │ │ │ ├── file │ │ │ │ │ ├── FileConfiguration.java │ │ │ │ │ ├── FileConfigurationOptions.java │ │ │ │ │ ├── YamlConfiguration.java │ │ │ │ │ ├── YamlConfigurationOptions.java │ │ │ │ │ ├── YamlConstructor.java │ │ │ │ │ └── YamlRepresenter.java │ │ │ │ └── serialization │ │ │ │ │ ├── ConfigurationSerializable.java │ │ │ │ │ ├── ConfigurationSerialization.java │ │ │ │ │ ├── DelegateDeserialization.java │ │ │ │ │ └── SerializableAs.java │ │ │ ├── conversations │ │ │ │ ├── BooleanPrompt.java │ │ │ │ ├── Conversable.java │ │ │ │ ├── Conversation.java │ │ │ │ ├── ConversationAbandonedEvent.java │ │ │ │ ├── ConversationAbandonedListener.java │ │ │ │ ├── ConversationCanceller.java │ │ │ │ ├── ConversationContext.java │ │ │ │ ├── ConversationFactory.java │ │ │ │ ├── ConversationPrefix.java │ │ │ │ ├── ExactMatchConversationCanceller.java │ │ │ │ ├── FixedSetPrompt.java │ │ │ │ ├── InactivityConversationCanceller.java │ │ │ │ ├── ManuallyAbandonedConversationCanceller.java │ │ │ │ ├── MessagePrompt.java │ │ │ │ ├── NullConversationPrefix.java │ │ │ │ ├── NumericPrompt.java │ │ │ │ ├── PlayerNamePrompt.java │ │ │ │ ├── PluginNameConversationPrefix.java │ │ │ │ ├── Prompt.java │ │ │ │ ├── RegexPrompt.java │ │ │ │ ├── StringPrompt.java │ │ │ │ └── ValidatingPrompt.java │ │ │ ├── enchantments │ │ │ │ ├── Enchantment.java │ │ │ │ ├── EnchantmentTarget.java │ │ │ │ └── EnchantmentWrapper.java │ │ │ ├── entity │ │ │ │ ├── Ageable.java │ │ │ │ ├── Ambient.java │ │ │ │ ├── AnimalTamer.java │ │ │ │ ├── Animals.java │ │ │ │ ├── ArmorStand.java │ │ │ │ ├── Arrow.java │ │ │ │ ├── Bat.java │ │ │ │ ├── Blaze.java │ │ │ │ ├── Boat.java │ │ │ │ ├── CaveSpider.java │ │ │ │ ├── Chicken.java │ │ │ │ ├── ComplexEntityPart.java │ │ │ │ ├── ComplexLivingEntity.java │ │ │ │ ├── Cow.java │ │ │ │ ├── Creature.java │ │ │ │ ├── CreatureType.java │ │ │ │ ├── Creeper.java │ │ │ │ ├── Damageable.java │ │ │ │ ├── Egg.java │ │ │ │ ├── EnderCrystal.java │ │ │ │ ├── EnderDragon.java │ │ │ │ ├── EnderDragonPart.java │ │ │ │ ├── EnderPearl.java │ │ │ │ ├── EnderSignal.java │ │ │ │ ├── Enderman.java │ │ │ │ ├── Endermite.java │ │ │ │ ├── Entity.java │ │ │ │ ├── EntityType.java │ │ │ │ ├── ExperienceOrb.java │ │ │ │ ├── Explosive.java │ │ │ │ ├── FallingBlock.java │ │ │ │ ├── FallingSand.java │ │ │ │ ├── Fireball.java │ │ │ │ ├── Firework.java │ │ │ │ ├── Fish.java │ │ │ │ ├── FishHook.java │ │ │ │ ├── Flying.java │ │ │ │ ├── Ghast.java │ │ │ │ ├── Giant.java │ │ │ │ ├── Golem.java │ │ │ │ ├── Guardian.java │ │ │ │ ├── Hanging.java │ │ │ │ ├── Horse.java │ │ │ │ ├── HumanEntity.java │ │ │ │ ├── IronGolem.java │ │ │ │ ├── Item.java │ │ │ │ ├── ItemFrame.java │ │ │ │ ├── LargeFireball.java │ │ │ │ ├── LeashHitch.java │ │ │ │ ├── LightningStrike.java │ │ │ │ ├── LivingEntity.java │ │ │ │ ├── MagmaCube.java │ │ │ │ ├── Minecart.java │ │ │ │ ├── Monster.java │ │ │ │ ├── MushroomCow.java │ │ │ │ ├── NPC.java │ │ │ │ ├── Ocelot.java │ │ │ │ ├── Painting.java │ │ │ │ ├── Pig.java │ │ │ │ ├── PigZombie.java │ │ │ │ ├── Player.java │ │ │ │ ├── PoweredMinecart.java │ │ │ │ ├── Projectile.java │ │ │ │ ├── Rabbit.java │ │ │ │ ├── Sheep.java │ │ │ │ ├── Silverfish.java │ │ │ │ ├── Skeleton.java │ │ │ │ ├── Slime.java │ │ │ │ ├── SmallFireball.java │ │ │ │ ├── Snowball.java │ │ │ │ ├── Snowman.java │ │ │ │ ├── Spider.java │ │ │ │ ├── Squid.java │ │ │ │ ├── StorageMinecart.java │ │ │ │ ├── TNTPrimed.java │ │ │ │ ├── Tameable.java │ │ │ │ ├── ThrownExpBottle.java │ │ │ │ ├── ThrownPotion.java │ │ │ │ ├── Vehicle.java │ │ │ │ ├── Villager.java │ │ │ │ ├── WaterMob.java │ │ │ │ ├── Weather.java │ │ │ │ ├── Witch.java │ │ │ │ ├── Wither.java │ │ │ │ ├── WitherSkull.java │ │ │ │ ├── Wolf.java │ │ │ │ ├── Zombie.java │ │ │ │ └── minecart │ │ │ │ │ ├── CommandMinecart.java │ │ │ │ │ ├── ExplosiveMinecart.java │ │ │ │ │ ├── HopperMinecart.java │ │ │ │ │ ├── PoweredMinecart.java │ │ │ │ │ ├── RideableMinecart.java │ │ │ │ │ ├── SpawnerMinecart.java │ │ │ │ │ └── StorageMinecart.java │ │ │ ├── event │ │ │ │ ├── Cancellable.java │ │ │ │ ├── Event.java │ │ │ │ ├── EventException.java │ │ │ │ ├── EventHandler.java │ │ │ │ ├── EventPriority.java │ │ │ │ ├── HandlerList.java │ │ │ │ ├── Listener.java │ │ │ │ ├── block │ │ │ │ │ ├── Action.java │ │ │ │ │ ├── BlockBreakEvent.java │ │ │ │ │ ├── BlockBurnEvent.java │ │ │ │ │ ├── BlockCanBuildEvent.java │ │ │ │ │ ├── BlockDamageEvent.java │ │ │ │ │ ├── BlockDispenseEvent.java │ │ │ │ │ ├── BlockEvent.java │ │ │ │ │ ├── BlockExpEvent.java │ │ │ │ │ ├── BlockExplodeEvent.java │ │ │ │ │ ├── BlockFadeEvent.java │ │ │ │ │ ├── BlockFormEvent.java │ │ │ │ │ ├── BlockFromToEvent.java │ │ │ │ │ ├── BlockGrowEvent.java │ │ │ │ │ ├── BlockIgniteEvent.java │ │ │ │ │ ├── BlockMultiPlaceEvent.java │ │ │ │ │ ├── BlockPhysicsEvent.java │ │ │ │ │ ├── BlockPistonEvent.java │ │ │ │ │ ├── BlockPistonExtendEvent.java │ │ │ │ │ ├── BlockPistonRetractEvent.java │ │ │ │ │ ├── BlockPlaceEvent.java │ │ │ │ │ ├── BlockRedstoneEvent.java │ │ │ │ │ ├── BlockSpreadEvent.java │ │ │ │ │ ├── EntityBlockFormEvent.java │ │ │ │ │ ├── LeavesDecayEvent.java │ │ │ │ │ ├── NotePlayEvent.java │ │ │ │ │ └── SignChangeEvent.java │ │ │ │ ├── enchantment │ │ │ │ │ ├── EnchantItemEvent.java │ │ │ │ │ └── PrepareItemEnchantEvent.java │ │ │ │ ├── entity │ │ │ │ │ ├── CreatureSpawnEvent.java │ │ │ │ │ ├── CreeperPowerEvent.java │ │ │ │ │ ├── EntityBreakDoorEvent.java │ │ │ │ │ ├── EntityChangeBlockEvent.java │ │ │ │ │ ├── EntityCombustByBlockEvent.java │ │ │ │ │ ├── EntityCombustByEntityEvent.java │ │ │ │ │ ├── EntityCombustEvent.java │ │ │ │ │ ├── EntityCreatePortalEvent.java │ │ │ │ │ ├── EntityDamageByBlockEvent.java │ │ │ │ │ ├── EntityDamageByEntityEvent.java │ │ │ │ │ ├── EntityDamageEvent.java │ │ │ │ │ ├── EntityDeathEvent.java │ │ │ │ │ ├── EntityEvent.java │ │ │ │ │ ├── EntityExplodeEvent.java │ │ │ │ │ ├── EntityInteractEvent.java │ │ │ │ │ ├── EntityPortalEnterEvent.java │ │ │ │ │ ├── EntityPortalEvent.java │ │ │ │ │ ├── EntityPortalExitEvent.java │ │ │ │ │ ├── EntityRegainHealthEvent.java │ │ │ │ │ ├── EntityShootBowEvent.java │ │ │ │ │ ├── EntitySpawnEvent.java │ │ │ │ │ ├── EntityTameEvent.java │ │ │ │ │ ├── EntityTargetEvent.java │ │ │ │ │ ├── EntityTargetLivingEntityEvent.java │ │ │ │ │ ├── EntityTeleportEvent.java │ │ │ │ │ ├── EntityUnleashEvent.java │ │ │ │ │ ├── ExpBottleEvent.java │ │ │ │ │ ├── ExplosionPrimeEvent.java │ │ │ │ │ ├── FireworkExplodeEvent.java │ │ │ │ │ ├── FoodLevelChangeEvent.java │ │ │ │ │ ├── HorseJumpEvent.java │ │ │ │ │ ├── ItemDespawnEvent.java │ │ │ │ │ ├── ItemMergeEvent.java │ │ │ │ │ ├── ItemSpawnEvent.java │ │ │ │ │ ├── PigZapEvent.java │ │ │ │ │ ├── PlayerDeathEvent.java │ │ │ │ │ ├── PlayerLeashEntityEvent.java │ │ │ │ │ ├── PotionSplashEvent.java │ │ │ │ │ ├── ProjectileHitEvent.java │ │ │ │ │ ├── ProjectileLaunchEvent.java │ │ │ │ │ ├── SheepDyeWoolEvent.java │ │ │ │ │ ├── SheepRegrowWoolEvent.java │ │ │ │ │ ├── SlimeSplitEvent.java │ │ │ │ │ └── SpawnerSpawnEvent.java │ │ │ │ ├── hanging │ │ │ │ │ ├── HangingBreakByEntityEvent.java │ │ │ │ │ ├── HangingBreakEvent.java │ │ │ │ │ ├── HangingEvent.java │ │ │ │ │ └── HangingPlaceEvent.java │ │ │ │ ├── inventory │ │ │ │ │ ├── BrewEvent.java │ │ │ │ │ ├── ClickType.java │ │ │ │ │ ├── CraftItemEvent.java │ │ │ │ │ ├── DragType.java │ │ │ │ │ ├── FurnaceBurnEvent.java │ │ │ │ │ ├── FurnaceExtractEvent.java │ │ │ │ │ ├── FurnaceSmeltEvent.java │ │ │ │ │ ├── InventoryAction.java │ │ │ │ │ ├── InventoryClickEvent.java │ │ │ │ │ ├── InventoryCloseEvent.java │ │ │ │ │ ├── InventoryCreativeEvent.java │ │ │ │ │ ├── InventoryDragEvent.java │ │ │ │ │ ├── InventoryEvent.java │ │ │ │ │ ├── InventoryInteractEvent.java │ │ │ │ │ ├── InventoryMoveItemEvent.java │ │ │ │ │ ├── InventoryOpenEvent.java │ │ │ │ │ ├── InventoryPickupItemEvent.java │ │ │ │ │ ├── InventoryType.java │ │ │ │ │ └── PrepareItemCraftEvent.java │ │ │ │ ├── painting │ │ │ │ │ ├── PaintingBreakByEntityEvent.java │ │ │ │ │ ├── PaintingBreakEvent.java │ │ │ │ │ ├── PaintingEvent.java │ │ │ │ │ └── PaintingPlaceEvent.java │ │ │ │ ├── player │ │ │ │ │ ├── AsyncPlayerChatEvent.java │ │ │ │ │ ├── AsyncPlayerPreLoginEvent.java │ │ │ │ │ ├── PlayerAchievementAwardedEvent.java │ │ │ │ │ ├── PlayerAnimationEvent.java │ │ │ │ │ ├── PlayerAnimationType.java │ │ │ │ │ ├── PlayerArmorStandManipulateEvent.java │ │ │ │ │ ├── PlayerBedEnterEvent.java │ │ │ │ │ ├── PlayerBedLeaveEvent.java │ │ │ │ │ ├── PlayerBucketEmptyEvent.java │ │ │ │ │ ├── PlayerBucketEvent.java │ │ │ │ │ ├── PlayerBucketFillEvent.java │ │ │ │ │ ├── PlayerChangedWorldEvent.java │ │ │ │ │ ├── PlayerChannelEvent.java │ │ │ │ │ ├── PlayerChatEvent.java │ │ │ │ │ ├── PlayerChatTabCompleteEvent.java │ │ │ │ │ ├── PlayerCommandPreprocessEvent.java │ │ │ │ │ ├── PlayerDropItemEvent.java │ │ │ │ │ ├── PlayerEditBookEvent.java │ │ │ │ │ ├── PlayerEggThrowEvent.java │ │ │ │ │ ├── PlayerEvent.java │ │ │ │ │ ├── PlayerExpChangeEvent.java │ │ │ │ │ ├── PlayerFishEvent.java │ │ │ │ │ ├── PlayerGameModeChangeEvent.java │ │ │ │ │ ├── PlayerInitialSpawnEvent.java │ │ │ │ │ ├── PlayerInteractAtEntityEvent.java │ │ │ │ │ ├── PlayerInteractEntityEvent.java │ │ │ │ │ ├── PlayerInteractEvent.java │ │ │ │ │ ├── PlayerInventoryEvent.java │ │ │ │ │ ├── PlayerItemBreakEvent.java │ │ │ │ │ ├── PlayerItemConsumeEvent.java │ │ │ │ │ ├── PlayerItemDamageEvent.java │ │ │ │ │ ├── PlayerItemHeldEvent.java │ │ │ │ │ ├── PlayerJoinEvent.java │ │ │ │ │ ├── PlayerKickEvent.java │ │ │ │ │ ├── PlayerLevelChangeEvent.java │ │ │ │ │ ├── PlayerLocaleChangeEvent.java │ │ │ │ │ ├── PlayerLoginEvent.java │ │ │ │ │ ├── PlayerMoveEvent.java │ │ │ │ │ ├── PlayerPickupItemEvent.java │ │ │ │ │ ├── PlayerPortalEvent.java │ │ │ │ │ ├── PlayerPreLoginEvent.java │ │ │ │ │ ├── PlayerQuitEvent.java │ │ │ │ │ ├── PlayerRegisterChannelEvent.java │ │ │ │ │ ├── PlayerResourcePackStatusEvent.java │ │ │ │ │ ├── PlayerRespawnEvent.java │ │ │ │ │ ├── PlayerShearEntityEvent.java │ │ │ │ │ ├── PlayerStatisticIncrementEvent.java │ │ │ │ │ ├── PlayerTeleportEvent.java │ │ │ │ │ ├── PlayerToggleFlightEvent.java │ │ │ │ │ ├── PlayerToggleSneakEvent.java │ │ │ │ │ ├── PlayerToggleSprintEvent.java │ │ │ │ │ ├── PlayerUnleashEntityEvent.java │ │ │ │ │ ├── PlayerUnregisterChannelEvent.java │ │ │ │ │ └── PlayerVelocityEvent.java │ │ │ │ ├── server │ │ │ │ │ ├── MapInitializeEvent.java │ │ │ │ │ ├── PluginDisableEvent.java │ │ │ │ │ ├── PluginEnableEvent.java │ │ │ │ │ ├── PluginEvent.java │ │ │ │ │ ├── RemoteServerCommandEvent.java │ │ │ │ │ ├── ServerCommandEvent.java │ │ │ │ │ ├── ServerEvent.java │ │ │ │ │ ├── ServerListPingEvent.java │ │ │ │ │ ├── ServiceEvent.java │ │ │ │ │ ├── ServiceRegisterEvent.java │ │ │ │ │ └── ServiceUnregisterEvent.java │ │ │ │ ├── vehicle │ │ │ │ │ ├── VehicleBlockCollisionEvent.java │ │ │ │ │ ├── VehicleCollisionEvent.java │ │ │ │ │ ├── VehicleCreateEvent.java │ │ │ │ │ ├── VehicleDamageEvent.java │ │ │ │ │ ├── VehicleDestroyEvent.java │ │ │ │ │ ├── VehicleEnterEvent.java │ │ │ │ │ ├── VehicleEntityCollisionEvent.java │ │ │ │ │ ├── VehicleEvent.java │ │ │ │ │ ├── VehicleExitEvent.java │ │ │ │ │ ├── VehicleMoveEvent.java │ │ │ │ │ └── VehicleUpdateEvent.java │ │ │ │ ├── weather │ │ │ │ │ ├── LightningStrikeEvent.java │ │ │ │ │ ├── ThunderChangeEvent.java │ │ │ │ │ ├── WeatherChangeEvent.java │ │ │ │ │ └── WeatherEvent.java │ │ │ │ └── world │ │ │ │ │ ├── ChunkEvent.java │ │ │ │ │ ├── ChunkLoadEvent.java │ │ │ │ │ ├── ChunkPopulateEvent.java │ │ │ │ │ ├── ChunkUnloadEvent.java │ │ │ │ │ ├── PortalCreateEvent.java │ │ │ │ │ ├── SpawnChangeEvent.java │ │ │ │ │ ├── StructureGrowEvent.java │ │ │ │ │ ├── WorldEvent.java │ │ │ │ │ ├── WorldInitEvent.java │ │ │ │ │ ├── WorldLoadEvent.java │ │ │ │ │ ├── WorldSaveEvent.java │ │ │ │ │ └── WorldUnloadEvent.java │ │ │ ├── generator │ │ │ │ ├── BlockPopulator.java │ │ │ │ └── ChunkGenerator.java │ │ │ ├── help │ │ │ │ ├── GenericCommandHelpTopic.java │ │ │ │ ├── HelpMap.java │ │ │ │ ├── HelpTopic.java │ │ │ │ ├── HelpTopicComparator.java │ │ │ │ ├── HelpTopicFactory.java │ │ │ │ └── IndexHelpTopic.java │ │ │ ├── inventory │ │ │ │ ├── AnvilInventory.java │ │ │ │ ├── BeaconInventory.java │ │ │ │ ├── BrewerInventory.java │ │ │ │ ├── CraftingInventory.java │ │ │ │ ├── DoubleChestInventory.java │ │ │ │ ├── EnchantingInventory.java │ │ │ │ ├── EntityEquipment.java │ │ │ │ ├── EquipmentSlot.java │ │ │ │ ├── FurnaceInventory.java │ │ │ │ ├── FurnaceRecipe.java │ │ │ │ ├── HorseInventory.java │ │ │ │ ├── Inventory.java │ │ │ │ ├── InventoryHolder.java │ │ │ │ ├── InventoryView.java │ │ │ │ ├── ItemFactory.java │ │ │ │ ├── ItemFlag.java │ │ │ │ ├── ItemStack.java │ │ │ │ ├── MerchantInventory.java │ │ │ │ ├── PlayerInventory.java │ │ │ │ ├── Recipe.java │ │ │ │ ├── ShapedRecipe.java │ │ │ │ ├── ShapelessRecipe.java │ │ │ │ └── meta │ │ │ │ │ ├── BannerMeta.java │ │ │ │ │ ├── BlockStateMeta.java │ │ │ │ │ ├── BookMeta.java │ │ │ │ │ ├── EnchantmentStorageMeta.java │ │ │ │ │ ├── FireworkEffectMeta.java │ │ │ │ │ ├── FireworkMeta.java │ │ │ │ │ ├── ItemMeta.java │ │ │ │ │ ├── LeatherArmorMeta.java │ │ │ │ │ ├── MapMeta.java │ │ │ │ │ ├── PotionMeta.java │ │ │ │ │ ├── Repairable.java │ │ │ │ │ └── SkullMeta.java │ │ │ ├── map │ │ │ │ ├── MapCanvas.java │ │ │ │ ├── MapCursor.java │ │ │ │ ├── MapCursorCollection.java │ │ │ │ ├── MapFont.java │ │ │ │ ├── MapPalette.java │ │ │ │ ├── MapRenderer.java │ │ │ │ ├── MapView.java │ │ │ │ └── MinecraftFont.java │ │ │ ├── material │ │ │ │ ├── Attachable.java │ │ │ │ ├── Banner.java │ │ │ │ ├── Bed.java │ │ │ │ ├── Button.java │ │ │ │ ├── Cake.java │ │ │ │ ├── Cauldron.java │ │ │ │ ├── Chest.java │ │ │ │ ├── Coal.java │ │ │ │ ├── CocoaPlant.java │ │ │ │ ├── Colorable.java │ │ │ │ ├── Command.java │ │ │ │ ├── Crops.java │ │ │ │ ├── DetectorRail.java │ │ │ │ ├── Diode.java │ │ │ │ ├── Directional.java │ │ │ │ ├── DirectionalContainer.java │ │ │ │ ├── Dispenser.java │ │ │ │ ├── Door.java │ │ │ │ ├── Dye.java │ │ │ │ ├── EnderChest.java │ │ │ │ ├── ExtendedRails.java │ │ │ │ ├── FlowerPot.java │ │ │ │ ├── Furnace.java │ │ │ │ ├── FurnaceAndDispenser.java │ │ │ │ ├── Gate.java │ │ │ │ ├── Ladder.java │ │ │ │ ├── Leaves.java │ │ │ │ ├── Lever.java │ │ │ │ ├── LongGrass.java │ │ │ │ ├── MaterialData.java │ │ │ │ ├── MonsterEggs.java │ │ │ │ ├── Mushroom.java │ │ │ │ ├── NetherWarts.java │ │ │ │ ├── Openable.java │ │ │ │ ├── PistonBaseMaterial.java │ │ │ │ ├── PistonExtensionMaterial.java │ │ │ │ ├── PoweredRail.java │ │ │ │ ├── PressurePlate.java │ │ │ │ ├── PressureSensor.java │ │ │ │ ├── Pumpkin.java │ │ │ │ ├── Rails.java │ │ │ │ ├── Redstone.java │ │ │ │ ├── RedstoneTorch.java │ │ │ │ ├── RedstoneWire.java │ │ │ │ ├── Sandstone.java │ │ │ │ ├── Sign.java │ │ │ │ ├── SimpleAttachableMaterialData.java │ │ │ │ ├── Skull.java │ │ │ │ ├── SmoothBrick.java │ │ │ │ ├── SpawnEgg.java │ │ │ │ ├── Stairs.java │ │ │ │ ├── Step.java │ │ │ │ ├── TexturedMaterial.java │ │ │ │ ├── Torch.java │ │ │ │ ├── TrapDoor.java │ │ │ │ ├── Tree.java │ │ │ │ ├── Tripwire.java │ │ │ │ ├── TripwireHook.java │ │ │ │ ├── Vine.java │ │ │ │ ├── WoodenStep.java │ │ │ │ └── Wool.java │ │ │ ├── metadata │ │ │ │ ├── FixedMetadataValue.java │ │ │ │ ├── LazyMetadataValue.java │ │ │ │ ├── MetadataConversionException.java │ │ │ │ ├── MetadataEvaluationException.java │ │ │ │ ├── MetadataStore.java │ │ │ │ ├── MetadataStoreBase.java │ │ │ │ ├── MetadataValue.java │ │ │ │ ├── MetadataValueAdapter.java │ │ │ │ └── Metadatable.java │ │ │ ├── permissions │ │ │ │ ├── Permissible.java │ │ │ │ ├── PermissibleBase.java │ │ │ │ ├── Permission.java │ │ │ │ ├── PermissionAttachment.java │ │ │ │ ├── PermissionAttachmentInfo.java │ │ │ │ ├── PermissionDefault.java │ │ │ │ ├── PermissionRemovedExecutor.java │ │ │ │ └── ServerOperator.java │ │ │ ├── plugin │ │ │ │ ├── AuthorNagException.java │ │ │ │ ├── EventExecutor.java │ │ │ │ ├── IllegalPluginAccessException.java │ │ │ │ ├── InvalidDescriptionException.java │ │ │ │ ├── InvalidPluginException.java │ │ │ │ ├── Plugin.java │ │ │ │ ├── PluginAwareness.java │ │ │ │ ├── PluginBase.java │ │ │ │ ├── PluginDescriptionFile.java │ │ │ │ ├── PluginLoadOrder.java │ │ │ │ ├── PluginLoader.java │ │ │ │ ├── PluginLogger.java │ │ │ │ ├── PluginManager.java │ │ │ │ ├── RegisteredListener.java │ │ │ │ ├── RegisteredServiceProvider.java │ │ │ │ ├── ServicePriority.java │ │ │ │ ├── ServicesManager.java │ │ │ │ ├── SimplePluginManager.java │ │ │ │ ├── SimpleServicesManager.java │ │ │ │ ├── TimedRegisteredListener.java │ │ │ │ ├── UnknownDependencyException.java │ │ │ │ ├── java │ │ │ │ │ ├── JavaPlugin.java │ │ │ │ │ ├── JavaPluginLoader.java │ │ │ │ │ └── PluginClassLoader.java │ │ │ │ └── messaging │ │ │ │ │ ├── ChannelNameTooLongException.java │ │ │ │ │ ├── ChannelNotRegisteredException.java │ │ │ │ │ ├── MessageTooLargeException.java │ │ │ │ │ ├── Messenger.java │ │ │ │ │ ├── PluginChannelDirection.java │ │ │ │ │ ├── PluginMessageListener.java │ │ │ │ │ ├── PluginMessageListenerRegistration.java │ │ │ │ │ ├── PluginMessageRecipient.java │ │ │ │ │ ├── ReservedChannelException.java │ │ │ │ │ └── StandardMessenger.java │ │ │ ├── potion │ │ │ │ ├── Potion.java │ │ │ │ ├── PotionBrewer.java │ │ │ │ ├── PotionEffect.java │ │ │ │ ├── PotionEffectType.java │ │ │ │ ├── PotionEffectTypeWrapper.java │ │ │ │ └── PotionType.java │ │ │ ├── projectiles │ │ │ │ ├── BlockProjectileSource.java │ │ │ │ └── ProjectileSource.java │ │ │ ├── scheduler │ │ │ │ ├── BukkitRunnable.java │ │ │ │ ├── BukkitScheduler.java │ │ │ │ ├── BukkitTask.java │ │ │ │ └── BukkitWorker.java │ │ │ ├── scoreboard │ │ │ │ ├── Criterias.java │ │ │ │ ├── DisplaySlot.java │ │ │ │ ├── NameTagVisibility.java │ │ │ │ ├── Objective.java │ │ │ │ ├── Score.java │ │ │ │ ├── Scoreboard.java │ │ │ │ ├── ScoreboardManager.java │ │ │ │ └── Team.java │ │ │ └── util │ │ │ │ ├── BlockIterator.java │ │ │ │ ├── BlockVector.java │ │ │ │ ├── CachedServerIcon.java │ │ │ │ ├── ChatPaginator.java │ │ │ │ ├── EulerAngle.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── Java15Compat.java │ │ │ │ ├── NumberConversions.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── Vector.java │ │ │ │ ├── io │ │ │ │ ├── BukkitObjectInputStream.java │ │ │ │ ├── BukkitObjectOutputStream.java │ │ │ │ └── Wrapper.java │ │ │ │ ├── noise │ │ │ │ ├── NoiseGenerator.java │ │ │ │ ├── OctaveGenerator.java │ │ │ │ ├── PerlinNoiseGenerator.java │ │ │ │ ├── PerlinOctaveGenerator.java │ │ │ │ ├── SimplexNoiseGenerator.java │ │ │ │ └── SimplexOctaveGenerator.java │ │ │ │ └── permissions │ │ │ │ ├── BroadcastPermissions.java │ │ │ │ ├── CommandPermissions.java │ │ │ │ └── DefaultPermissions.java │ │ │ ├── github │ │ │ └── paperspigot │ │ │ │ ├── Title.java │ │ │ │ └── event │ │ │ │ └── block │ │ │ │ └── BeaconEffectEvent.java │ │ │ └── spigotmc │ │ │ ├── CustomTimingsHandler.java │ │ │ └── event │ │ │ ├── entity │ │ │ ├── EntityDismountEvent.java │ │ │ └── EntityMountEvent.java │ │ │ └── player │ │ │ └── PlayerSpawnLocationEvent.java │ └── javadoc │ │ ├── org │ │ └── bukkit │ │ │ ├── block │ │ │ └── package-info.java │ │ │ ├── command │ │ │ ├── defaults │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── configuration │ │ │ ├── file │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── serialization │ │ │ │ └── package-info.java │ │ │ ├── conversations │ │ │ └── package-info.java │ │ │ ├── enchantments │ │ │ └── package-info.java │ │ │ ├── entity │ │ │ ├── minecart │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── event │ │ │ ├── block │ │ │ │ └── package-info.java │ │ │ ├── enchantment │ │ │ │ └── package-info.java │ │ │ ├── entity │ │ │ │ └── package-info.java │ │ │ ├── hanging │ │ │ │ └── package-info.java │ │ │ ├── inventory │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── painting │ │ │ │ └── package-info.java │ │ │ ├── player │ │ │ │ └── package-info.java │ │ │ ├── server │ │ │ │ └── package-info.java │ │ │ ├── vehicle │ │ │ │ └── package-info.java │ │ │ ├── weather │ │ │ │ └── package-info.java │ │ │ └── world │ │ │ │ └── package-info.java │ │ │ ├── generator │ │ │ └── package-info.java │ │ │ ├── help │ │ │ └── package-info.java │ │ │ ├── inventory │ │ │ ├── meta │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── map │ │ │ └── package-info.java │ │ │ ├── material │ │ │ └── package-info.java │ │ │ ├── metadata │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── permissions │ │ │ └── package-info.java │ │ │ ├── plugin │ │ │ ├── doc-files │ │ │ │ └── permissions-example_plugin.yml │ │ │ ├── java │ │ │ │ └── package-info.java │ │ │ ├── messaging │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── potion │ │ │ └── package-info.java │ │ │ ├── projectiles │ │ │ └── package-info.java │ │ │ ├── scheduler │ │ │ └── package-info.java │ │ │ ├── scoreboard │ │ │ └── package-info.java │ │ │ └── util │ │ │ ├── io │ │ │ └── package-info.java │ │ │ ├── noise │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── permissions │ │ │ └── package-info.java │ │ └── overview.html │ └── test │ └── java │ └── org │ └── bukkit │ ├── ArtTest.java │ ├── BukkitMirrorTest.java │ ├── ChatColorTest.java │ ├── ChatPaginatorTest.java │ ├── CoalTypeTest.java │ ├── ColorTest.java │ ├── CropStateTest.java │ ├── DifficultyTest.java │ ├── DyeColorTest.java │ ├── EffectTest.java │ ├── EntityEffectTest.java │ ├── GameModeTest.java │ ├── GrassSpeciesTest.java │ ├── InstrumentTest.java │ ├── LocationTest.java │ ├── MaterialTest.java │ ├── NoteTest.java │ ├── TestServer.java │ ├── TreeSpeciesTest.java │ ├── WorldTypeTest.java │ ├── configuration │ ├── ConfigurationSectionTest.java │ ├── ConfigurationTest.java │ ├── MemoryConfigurationTest.java │ ├── MemorySectionTest.java │ └── file │ │ ├── FileConfigurationTest.java │ │ └── YamlConfigurationTest.java │ ├── conversations │ ├── ConversationContextTest.java │ ├── ConversationTest.java │ ├── FakeConversable.java │ └── ValidatingPromptTest.java │ ├── event │ ├── PlayerChatTabCompleteEventTest.java │ ├── SyntheticEventTest.java │ └── TestEvent.java │ ├── materials │ └── MaterialDataTest.java │ ├── metadata │ ├── FixedMetadataValueTest.java │ ├── LazyMetadataValueTest.java │ ├── MetadataConversionTest.java │ ├── MetadataStoreTest.java │ └── MetadataValueAdapterTest.java │ ├── plugin │ ├── PluginManagerTest.java │ ├── TestPlugin.java │ ├── TimedRegisteredListenerTest.java │ └── messaging │ │ ├── StandardMessengerTest.java │ │ ├── TestMessageListener.java │ │ └── TestPlayer.java │ ├── potion │ └── PotionTest.java │ └── util │ ├── StringUtilStartsWithTest.java │ ├── StringUtilTest.java │ └── io │ └── BukkitObjectStreamTest.java ├── BurritoSpigot-Server ├── README.md ├── burrito ├── deprecation-mappings.at ├── deprecation-mappings.csrg ├── nms-patches │ ├── AttributeRanged.patch │ ├── BaseBlockPosition.patch │ ├── BiomeBase.patch │ ├── BiomeMesa.patch │ ├── BiomeTheEndDecorator.patch │ ├── Block.patch │ ├── BlockAnvil.patch │ ├── BlockBloodStone.patch │ ├── BlockBrewingStand.patch │ ├── BlockButtonAbstract.patch │ ├── BlockCactus.patch │ ├── BlockCake.patch │ ├── BlockChest.patch │ ├── BlockCocoa.patch │ ├── BlockCommand.patch │ ├── BlockCrops.patch │ ├── BlockDaylightDetector.patch │ ├── BlockDiodeAbstract.patch │ ├── BlockDispenser.patch │ ├── BlockDoor.patch │ ├── BlockDragonEgg.patch │ ├── BlockDropper.patch │ ├── BlockEnderPortal.patch │ ├── BlockFalling.patch │ ├── BlockFire.patch │ ├── BlockFlowerPot.patch │ ├── BlockFlowing.patch │ ├── BlockFluids.patch │ ├── BlockGrass.patch │ ├── BlockHopper.patch │ ├── BlockIce.patch │ ├── BlockJukeBox.patch │ ├── BlockLeaves.patch │ ├── BlockLever.patch │ ├── BlockMinecartDetector.patch │ ├── BlockMinecartTrackAbstract.patch │ ├── BlockMobSpawner.patch │ ├── BlockMonsterEggs.patch │ ├── BlockMushroom.patch │ ├── BlockMycel.patch │ ├── BlockNetherWart.patch │ ├── BlockOre.patch │ ├── BlockPiston.patch │ ├── BlockPlant.patch │ ├── BlockPortal.patch │ ├── BlockPosition.patch │ ├── BlockPoweredRail.patch │ ├── BlockPressurePlateAbstract.patch │ ├── BlockPressurePlateBinary.patch │ ├── BlockPressurePlateWeighted.patch │ ├── BlockPumpkin.patch │ ├── BlockRedstoneLamp.patch │ ├── BlockRedstoneOre.patch │ ├── BlockRedstoneTorch.patch │ ├── BlockRedstoneWire.patch │ ├── BlockReed.patch │ ├── BlockSapling.patch │ ├── BlockSkull.patch │ ├── BlockSnow.patch │ ├── BlockSoil.patch │ ├── BlockState.patch │ ├── BlockStateBoolean.patch │ ├── BlockStateEnum.patch │ ├── BlockStateInteger.patch │ ├── BlockStateList.patch │ ├── BlockStationary.patch │ ├── BlockStem.patch │ ├── BlockTNT.patch │ ├── BlockTrapdoor.patch │ ├── BlockTripwire.patch │ ├── BlockTripwireHook.patch │ ├── BlockVine.patch │ ├── ChatBaseComponent.patch │ ├── ChatModifier.patch │ ├── Chunk.patch │ ├── ChunkProviderFlat.patch │ ├── ChunkProviderGenerate.patch │ ├── ChunkProviderHell.patch │ ├── ChunkProviderServer.patch │ ├── ChunkRegionLoader.patch │ ├── ChunkSection.patch │ ├── CommandBlockListenerAbstract.patch │ ├── CommandDispatcher.patch │ ├── CommandExecute.patch │ ├── CommandGamemode.patch │ ├── CommandGamerule.patch │ ├── CommandScoreboard.patch │ ├── CommandSpreadPlayers.patch │ ├── CommandTp.patch │ ├── Container.patch │ ├── ContainerAnvil.patch │ ├── ContainerBeacon.patch │ ├── ContainerBrewingStand.patch │ ├── ContainerChest.patch │ ├── ContainerDispenser.patch │ ├── ContainerEnchantTable.patch │ ├── ContainerFurnace.patch │ ├── ContainerHopper.patch │ ├── ContainerHorse.patch │ ├── ContainerMerchant.patch │ ├── ContainerPlayer.patch │ ├── ContainerWorkbench.patch │ ├── CraftingManager.patch │ ├── CrashReport.patch │ ├── DataWatcher.patch │ ├── DedicatedServer.patch │ ├── DispenseBehaviorItem.patch │ ├── DispenseBehaviorProjectile.patch │ ├── DispenserRegistry.patch │ ├── EULA.patch │ ├── Enchantment.patch │ ├── EnchantmentManager.patch │ ├── EnchantmentThorns.patch │ ├── Entity.patch │ ├── EntityAgeable.patch │ ├── EntityAnimal.patch │ ├── EntityArmorStand.patch │ ├── EntityArrow.patch │ ├── EntityBoat.patch │ ├── EntityChicken.patch │ ├── EntityCow.patch │ ├── EntityCreature.patch │ ├── EntityCreeper.patch │ ├── EntityDamageSourceIndirect.patch │ ├── EntityEgg.patch │ ├── EntityEnderCrystal.patch │ ├── EntityEnderDragon.patch │ ├── EntityEnderPearl.patch │ ├── EntityEnderman.patch │ ├── EntityExperienceOrb.patch │ ├── EntityFallingBlock.patch │ ├── EntityFireball.patch │ ├── EntityFireworks.patch │ ├── EntityFishingHook.patch │ ├── EntityGhast.patch │ ├── EntityHanging.patch │ ├── EntityHorse.patch │ ├── EntityHuman.patch │ ├── EntityInsentient.patch │ ├── EntityIronGolem.patch │ ├── EntityItem.patch │ ├── EntityItemFrame.patch │ ├── EntityLargeFireball.patch │ ├── EntityLeash.patch │ ├── EntityLightning.patch │ ├── EntityLiving.patch │ ├── EntityMinecartAbstract.patch │ ├── EntityMinecartCommandBlock.patch │ ├── EntityMinecartContainer.patch │ ├── EntityMinecartFurnace.patch │ ├── EntityMonster.patch │ ├── EntityMushroomCow.patch │ ├── EntityOcelot.patch │ ├── EntityPainting.patch │ ├── EntityPig.patch │ ├── EntityPlayer.patch │ ├── EntityPotion.patch │ ├── EntityProjectile.patch │ ├── EntityRabbit.patch │ ├── EntitySheep.patch │ ├── EntitySilverfish.patch │ ├── EntitySkeleton.patch │ ├── EntitySlice.patch │ ├── EntitySlime.patch │ ├── EntitySmallFireball.patch │ ├── EntitySnowman.patch │ ├── EntitySpider.patch │ ├── EntitySquid.patch │ ├── EntityTNTPrimed.patch │ ├── EntityThrownExpBottle.patch │ ├── EntityTracker.patch │ ├── EntityTrackerEntry.patch │ ├── EntityVillager.patch │ ├── EntityWither.patch │ ├── EntityWitherSkull.patch │ ├── EntityWolf.patch │ ├── EntityZombie.patch │ ├── ExpirableListEntry.patch │ ├── Explosion.patch │ ├── FileIOThread.patch │ ├── FoodMetaData.patch │ ├── GameProfileBanEntry.patch │ ├── GenericAttributes.patch │ ├── HandshakeListener.patch │ ├── IBlockState.patch │ ├── IDataManager.patch │ ├── IInventory.patch │ ├── IRecipe.patch │ ├── IntCache.patch │ ├── InventoryCraftResult.patch │ ├── InventoryCrafting.patch │ ├── InventoryEnderChest.patch │ ├── InventoryHorseChest.patch │ ├── InventoryLargeChest.patch │ ├── InventoryMerchant.patch │ ├── InventorySubcontainer.patch │ ├── ItemArmor.patch │ ├── ItemBlock.patch │ ├── ItemBoat.patch │ ├── ItemBookAndQuill.patch │ ├── ItemBow.patch │ ├── ItemBucket.patch │ ├── ItemDoor.patch │ ├── ItemDye.patch │ ├── ItemFireball.patch │ ├── ItemFishingRod.patch │ ├── ItemFlintAndSteel.patch │ ├── ItemHanging.patch │ ├── ItemLeash.patch │ ├── ItemMapEmpty.patch │ ├── ItemMinecart.patch │ ├── ItemMonsterEgg.patch │ ├── ItemRecord.patch │ ├── ItemSkull.patch │ ├── ItemStack.patch │ ├── ItemWaterLily.patch │ ├── ItemWorldMap.patch │ ├── JsonList.patch │ ├── LegacyPingHandler.patch │ ├── LoginListener.patch │ ├── MethodProfiler.patch │ ├── MinecraftServer.patch │ ├── MobEffectAttackDamage.patch │ ├── MobEffectList.patch │ ├── MobSpawnerAbstract.patch │ ├── NBTBase.patch │ ├── NBTCompressedStreamTools.patch │ ├── NBTTagByteArray.patch │ ├── NBTTagIntArray.patch │ ├── NBTTagList.patch │ ├── NameReferencingFileConverter.patch │ ├── NavigationAbstract.patch │ ├── NetworkManager.patch │ ├── NextTickListEntry.patch │ ├── OldChunkLoader.patch │ ├── PacketDataSerializer.patch │ ├── PacketDecoder.patch │ ├── PacketEncoder.patch │ ├── PacketHandshakingInSetProtocol.patch │ ├── PacketLoginInEncryptionBegin.patch │ ├── PacketPlayInArmAnimation.patch │ ├── PacketPlayInBlockPlace.patch │ ├── PacketPlayInChat.patch │ ├── PacketPlayInCloseWindow.patch │ ├── PacketPlayInCustomPayload.patch │ ├── PacketPlayInResourcePackStatus.patch │ ├── PacketPlayInSetCreativeSlot.patch │ ├── PacketPlayOutChat.patch │ ├── PacketPlayOutMapChunk.patch │ ├── PacketPlayOutMapChunkBulk.patch │ ├── PacketPlayOutOpenWindow.patch │ ├── PacketPlayOutPlayerListHeaderFooter.patch │ ├── PacketPlayOutTitle.patch │ ├── PacketStatusListener.patch │ ├── Path.patch │ ├── PathfinderGoalBreakDoor.patch │ ├── PathfinderGoalBreed.patch │ ├── PathfinderGoalDefendVillage.patch │ ├── PathfinderGoalEatTile.patch │ ├── PathfinderGoalFloat.patch │ ├── PathfinderGoalHurtByTarget.patch │ ├── PathfinderGoalMakeLove.patch │ ├── PathfinderGoalNearestAttackableTarget.patch │ ├── PathfinderGoalNearestAttackableTargetInsentient.patch │ ├── PathfinderGoalOwnerHurtByTarget.patch │ ├── PathfinderGoalOwnerHurtTarget.patch │ ├── PathfinderGoalPanic.patch │ ├── PathfinderGoalSelector.patch │ ├── PathfinderGoalSit.patch │ ├── PathfinderGoalTame.patch │ ├── PathfinderGoalTargetNearestPlayer.patch │ ├── PathfinderNormal.patch │ ├── PersistentCollection.patch │ ├── PlayerChunkMap.patch │ ├── PlayerConnection.patch │ ├── PlayerInteractManager.patch │ ├── PlayerInventory.patch │ ├── PlayerList.patch │ ├── PortalTravelAgent.patch │ ├── PropertyManager.patch │ ├── RecipeArmorDye.patch │ ├── RecipeBookClone.patch │ ├── RecipeFireworks.patch │ ├── RecipeMapClone.patch │ ├── RecipeRepair.patch │ ├── RecipesBanner.patch │ ├── RecipesFurnace.patch │ ├── RegionFile.patch │ ├── RegionFileCache.patch │ ├── RemoteControlCommandListener.patch │ ├── ScoreboardServer.patch │ ├── SecondaryWorldServer.patch │ ├── ServerConnection.patch │ ├── ServerStatisticManager.patch │ ├── ShapedRecipes.patch │ ├── ShapelessRecipes.patch │ ├── Slot.patch │ ├── SlotFurnaceResult.patch │ ├── SpawnerCreature.patch │ ├── StatisticManager.patch │ ├── StructureGenerator.patch │ ├── TileEntity.patch │ ├── TileEntityBanner.patch │ ├── TileEntityBeacon.patch │ ├── TileEntityBrewingStand.patch │ ├── TileEntityChest.patch │ ├── TileEntityCommand.patch │ ├── TileEntityDispenser.patch │ ├── TileEntityEnderChest.patch │ ├── TileEntityFurnace.patch │ ├── TileEntityHopper.patch │ ├── TileEntityNote.patch │ ├── TileEntityPiston.patch │ ├── TileEntitySign.patch │ ├── TileEntitySkull.patch │ ├── UserCache.patch │ ├── Village.patch │ ├── VillageSiege.patch │ ├── World.patch │ ├── WorldBorder.patch │ ├── WorldData.patch │ ├── WorldGenForestTree.patch │ ├── WorldGenGroundBush.patch │ ├── WorldGenLargeFeature.patch │ ├── WorldGenMegaTreeAbstract.patch │ ├── WorldGenPackedIce2.patch │ ├── WorldGenRegistration.patch │ ├── WorldGenVillage.patch │ ├── WorldGenVillagePieces.patch │ ├── WorldManager.patch │ ├── WorldMap.patch │ ├── WorldNBTStorage.patch │ └── WorldServer.patch ├── pom.xml ├── scripts │ ├── applyPatches.sh │ ├── decompile.sh │ ├── makePatches.sh │ └── remap.sh └── src │ ├── main │ ├── java │ │ ├── co │ │ │ └── aikar │ │ │ │ └── timings │ │ │ │ ├── SpigotTimings.java │ │ │ │ └── WorldTimingsHandler.java │ │ ├── dev │ │ │ └── cobblesword │ │ │ │ └── knockback │ │ │ │ ├── KnockbackConfig.java │ │ │ │ ├── KnockbackSpigot.java │ │ │ │ └── commons │ │ │ │ ├── FileUtils.java │ │ │ │ └── GsonUtils.java │ │ ├── net │ │ │ └── techcable │ │ │ │ └── tacospigot │ │ │ │ ├── BlockStateRegistry.java │ │ │ │ ├── CompatHacks.java │ │ │ │ ├── HopperHelper.java │ │ │ │ ├── HopperPusher.java │ │ │ │ ├── ImmutableArrayMap.java │ │ │ │ ├── ImmutableArrayTable.java │ │ │ │ ├── Indexer.java │ │ │ │ ├── TacoSpigotConfig.java │ │ │ │ ├── TacoSpigotWorldConfig.java │ │ │ │ ├── function │ │ │ │ └── ObjIntFunction.java │ │ │ │ └── utils │ │ │ │ └── BlockHelper.java │ │ └── org │ │ │ ├── bukkit │ │ │ └── craftbukkit │ │ │ │ ├── CraftArt.java │ │ │ │ ├── CraftChunk.java │ │ │ │ ├── CraftChunkSnapshot.java │ │ │ │ ├── CraftCrashReport.java │ │ │ │ ├── CraftEffect.java │ │ │ │ ├── CraftEquipmentSlot.java │ │ │ │ ├── CraftIpBanEntry.java │ │ │ │ ├── CraftIpBanList.java │ │ │ │ ├── CraftOfflinePlayer.java │ │ │ │ ├── CraftProfileBanEntry.java │ │ │ │ ├── CraftProfileBanList.java │ │ │ │ ├── CraftServer.java │ │ │ │ ├── CraftSound.java │ │ │ │ ├── CraftStatistic.java │ │ │ │ ├── CraftTravelAgent.java │ │ │ │ ├── CraftWorld.java │ │ │ │ ├── CraftWorldBorder.java │ │ │ │ ├── LoggerOutputStream.java │ │ │ │ ├── Main.java │ │ │ │ ├── Overridden.java │ │ │ │ ├── TrigMath.java │ │ │ │ ├── block │ │ │ │ ├── CraftBanner.java │ │ │ │ ├── CraftBeacon.java │ │ │ │ ├── CraftBlock.java │ │ │ │ ├── CraftBlockState.java │ │ │ │ ├── CraftBrewingStand.java │ │ │ │ ├── CraftChest.java │ │ │ │ ├── CraftCommandBlock.java │ │ │ │ ├── CraftCreatureSpawner.java │ │ │ │ ├── CraftDispenser.java │ │ │ │ ├── CraftDropper.java │ │ │ │ ├── CraftFurnace.java │ │ │ │ ├── CraftHopper.java │ │ │ │ ├── CraftJukebox.java │ │ │ │ ├── CraftNoteBlock.java │ │ │ │ ├── CraftSign.java │ │ │ │ └── CraftSkull.java │ │ │ │ ├── chunkio │ │ │ │ ├── ChunkIOExecutor.java │ │ │ │ ├── ChunkIOProvider.java │ │ │ │ └── QueuedChunk.java │ │ │ │ ├── command │ │ │ │ ├── ColouredConsoleSender.java │ │ │ │ ├── ConsoleCommandCompleter.java │ │ │ │ ├── CraftBlockCommandSender.java │ │ │ │ ├── CraftConsoleCommandSender.java │ │ │ │ ├── CraftRemoteConsoleCommandSender.java │ │ │ │ ├── ProxiedNativeCommandSender.java │ │ │ │ ├── ServerCommandSender.java │ │ │ │ └── VanillaCommandWrapper.java │ │ │ │ ├── conversations │ │ │ │ └── ConversationTracker.java │ │ │ │ ├── enchantments │ │ │ │ └── CraftEnchantment.java │ │ │ │ ├── entity │ │ │ │ ├── AbstractProjectile.java │ │ │ │ ├── CraftAgeable.java │ │ │ │ ├── CraftAmbient.java │ │ │ │ ├── CraftAnimals.java │ │ │ │ ├── CraftArmorStand.java │ │ │ │ ├── CraftArrow.java │ │ │ │ ├── CraftBat.java │ │ │ │ ├── CraftBlaze.java │ │ │ │ ├── CraftBoat.java │ │ │ │ ├── CraftCaveSpider.java │ │ │ │ ├── CraftChicken.java │ │ │ │ ├── CraftComplexLivingEntity.java │ │ │ │ ├── CraftComplexPart.java │ │ │ │ ├── CraftCow.java │ │ │ │ ├── CraftCreature.java │ │ │ │ ├── CraftCreeper.java │ │ │ │ ├── CraftEgg.java │ │ │ │ ├── CraftEnderCrystal.java │ │ │ │ ├── CraftEnderDragon.java │ │ │ │ ├── CraftEnderDragonPart.java │ │ │ │ ├── CraftEnderPearl.java │ │ │ │ ├── CraftEnderSignal.java │ │ │ │ ├── CraftEnderman.java │ │ │ │ ├── CraftEndermite.java │ │ │ │ ├── CraftEntity.java │ │ │ │ ├── CraftExperienceOrb.java │ │ │ │ ├── CraftFallingSand.java │ │ │ │ ├── CraftFireball.java │ │ │ │ ├── CraftFirework.java │ │ │ │ ├── CraftFish.java │ │ │ │ ├── CraftFlying.java │ │ │ │ ├── CraftGhast.java │ │ │ │ ├── CraftGiant.java │ │ │ │ ├── CraftGolem.java │ │ │ │ ├── CraftGuardian.java │ │ │ │ ├── CraftHanging.java │ │ │ │ ├── CraftHorse.java │ │ │ │ ├── CraftHumanEntity.java │ │ │ │ ├── CraftIronGolem.java │ │ │ │ ├── CraftItem.java │ │ │ │ ├── CraftItemFrame.java │ │ │ │ ├── CraftLargeFireball.java │ │ │ │ ├── CraftLeash.java │ │ │ │ ├── CraftLightningStrike.java │ │ │ │ ├── CraftLivingEntity.java │ │ │ │ ├── CraftMagmaCube.java │ │ │ │ ├── CraftMinecart.java │ │ │ │ ├── CraftMinecartChest.java │ │ │ │ ├── CraftMinecartCommand.java │ │ │ │ ├── CraftMinecartFurnace.java │ │ │ │ ├── CraftMinecartHopper.java │ │ │ │ ├── CraftMinecartMobSpawner.java │ │ │ │ ├── CraftMinecartRideable.java │ │ │ │ ├── CraftMinecartTNT.java │ │ │ │ ├── CraftMonster.java │ │ │ │ ├── CraftMushroomCow.java │ │ │ │ ├── CraftOcelot.java │ │ │ │ ├── CraftPainting.java │ │ │ │ ├── CraftPig.java │ │ │ │ ├── CraftPigZombie.java │ │ │ │ ├── CraftPlayer.java │ │ │ │ ├── CraftProjectile.java │ │ │ │ ├── CraftRabbit.java │ │ │ │ ├── CraftSheep.java │ │ │ │ ├── CraftSilverfish.java │ │ │ │ ├── CraftSkeleton.java │ │ │ │ ├── CraftSlime.java │ │ │ │ ├── CraftSmallFireball.java │ │ │ │ ├── CraftSnowball.java │ │ │ │ ├── CraftSnowman.java │ │ │ │ ├── CraftSpider.java │ │ │ │ ├── CraftSquid.java │ │ │ │ ├── CraftTNTPrimed.java │ │ │ │ ├── CraftTameableAnimal.java │ │ │ │ ├── CraftThrownExpBottle.java │ │ │ │ ├── CraftThrownPotion.java │ │ │ │ ├── CraftVehicle.java │ │ │ │ ├── CraftVillager.java │ │ │ │ ├── CraftWaterMob.java │ │ │ │ ├── CraftWeather.java │ │ │ │ ├── CraftWitch.java │ │ │ │ ├── CraftWither.java │ │ │ │ ├── CraftWitherSkull.java │ │ │ │ ├── CraftWolf.java │ │ │ │ └── CraftZombie.java │ │ │ │ ├── event │ │ │ │ └── CraftEventFactory.java │ │ │ │ ├── generator │ │ │ │ ├── CraftChunkData.java │ │ │ │ ├── CustomChunkGenerator.java │ │ │ │ ├── InternalChunkGenerator.java │ │ │ │ ├── NetherChunkGenerator.java │ │ │ │ ├── NormalChunkGenerator.java │ │ │ │ └── SkyLandsChunkGenerator.java │ │ │ │ ├── help │ │ │ │ ├── CommandAliasHelpTopic.java │ │ │ │ ├── CustomHelpTopic.java │ │ │ │ ├── CustomIndexHelpTopic.java │ │ │ │ ├── HelpTopicAmendment.java │ │ │ │ ├── HelpYamlReader.java │ │ │ │ ├── MultipleCommandAliasHelpTopic.java │ │ │ │ ├── MultipleCommandAliasHelpTopicFactory.java │ │ │ │ └── SimpleHelpMap.java │ │ │ │ ├── inventory │ │ │ │ ├── CraftContainer.java │ │ │ │ ├── CraftEntityEquipment.java │ │ │ │ ├── CraftFurnaceRecipe.java │ │ │ │ ├── CraftInventory.java │ │ │ │ ├── CraftInventoryAnvil.java │ │ │ │ ├── CraftInventoryBeacon.java │ │ │ │ ├── CraftInventoryBrewer.java │ │ │ │ ├── CraftInventoryCrafting.java │ │ │ │ ├── CraftInventoryCustom.java │ │ │ │ ├── CraftInventoryDoubleChest.java │ │ │ │ ├── CraftInventoryEnchanting.java │ │ │ │ ├── CraftInventoryFurnace.java │ │ │ │ ├── CraftInventoryHorse.java │ │ │ │ ├── CraftInventoryMerchant.java │ │ │ │ ├── CraftInventoryPlayer.java │ │ │ │ ├── CraftInventoryView.java │ │ │ │ ├── CraftItemFactory.java │ │ │ │ ├── CraftItemStack.java │ │ │ │ ├── CraftMetaBanner.java │ │ │ │ ├── CraftMetaBlockState.java │ │ │ │ ├── CraftMetaBook.java │ │ │ │ ├── CraftMetaBookSigned.java │ │ │ │ ├── CraftMetaCharge.java │ │ │ │ ├── CraftMetaEnchantedBook.java │ │ │ │ ├── CraftMetaFirework.java │ │ │ │ ├── CraftMetaItem.java │ │ │ │ ├── CraftMetaLeatherArmor.java │ │ │ │ ├── CraftMetaMap.java │ │ │ │ ├── CraftMetaPotion.java │ │ │ │ ├── CraftMetaSkull.java │ │ │ │ ├── CraftRecipe.java │ │ │ │ ├── CraftShapedRecipe.java │ │ │ │ ├── CraftShapelessRecipe.java │ │ │ │ ├── InventoryIterator.java │ │ │ │ ├── InventoryWrapper.java │ │ │ │ └── RecipeIterator.java │ │ │ │ ├── map │ │ │ │ ├── CraftMapCanvas.java │ │ │ │ ├── CraftMapRenderer.java │ │ │ │ ├── CraftMapView.java │ │ │ │ └── RenderData.java │ │ │ │ ├── metadata │ │ │ │ ├── BlockMetadataStore.java │ │ │ │ ├── EntityMetadataStore.java │ │ │ │ ├── PlayerMetadataStore.java │ │ │ │ └── WorldMetadataStore.java │ │ │ │ ├── potion │ │ │ │ ├── CraftPotionBrewer.java │ │ │ │ └── CraftPotionEffectType.java │ │ │ │ ├── projectiles │ │ │ │ └── CraftBlockProjectileSource.java │ │ │ │ ├── scheduler │ │ │ │ ├── CraftAsyncDebugger.java │ │ │ │ ├── CraftAsyncTask.java │ │ │ │ ├── CraftFuture.java │ │ │ │ ├── CraftScheduler.java │ │ │ │ └── CraftTask.java │ │ │ │ ├── scoreboard │ │ │ │ ├── CraftCriteria.java │ │ │ │ ├── CraftObjective.java │ │ │ │ ├── CraftScore.java │ │ │ │ ├── CraftScoreboard.java │ │ │ │ ├── CraftScoreboardComponent.java │ │ │ │ ├── CraftScoreboardManager.java │ │ │ │ ├── CraftScoreboardTranslations.java │ │ │ │ └── CraftTeam.java │ │ │ │ └── util │ │ │ │ ├── AsynchronousExecutor.java │ │ │ │ ├── BlockStateListPopulator.java │ │ │ │ ├── CraftChatMessage.java │ │ │ │ ├── CraftDamageSource.java │ │ │ │ ├── CraftIconCache.java │ │ │ │ ├── CraftMagicNumbers.java │ │ │ │ ├── DatFileFilter.java │ │ │ │ ├── ForwardLogHandler.java │ │ │ │ ├── HashTreeSet.java │ │ │ │ ├── LazyHashSet.java │ │ │ │ ├── LazyPlayerSet.java │ │ │ │ ├── LongHash.java │ │ │ │ ├── LongHashSet.java │ │ │ │ ├── LongObjectHashMap.java │ │ │ │ ├── MojangNameLookup.java │ │ │ │ ├── ServerShutdownThread.java │ │ │ │ ├── ShortConsoleLogFormatter.java │ │ │ │ ├── StructureGrowDelegate.java │ │ │ │ ├── TerminalConsoleWriterThread.java │ │ │ │ ├── UnsafeList.java │ │ │ │ ├── Versioning.java │ │ │ │ ├── Waitable.java │ │ │ │ ├── WeakCollection.java │ │ │ │ └── permissions │ │ │ │ ├── CommandPermissions.java │ │ │ │ └── CraftDefaultPermissions.java │ │ │ ├── github │ │ │ └── paperspigot │ │ │ │ ├── PaperSpigotConfig.java │ │ │ │ └── PaperSpigotWorldConfig.java │ │ │ └── spigotmc │ │ │ ├── ActivationRange.java │ │ │ ├── AntiXray.java │ │ │ ├── AsyncCatcher.java │ │ │ ├── CaseInsensitiveHashingStrategy.java │ │ │ ├── CaseInsensitiveMap.java │ │ │ ├── LimitStream.java │ │ │ ├── Metrics.java │ │ │ ├── RestartCommand.java │ │ │ ├── SneakyThrow.java │ │ │ ├── SpigotConfig.java │ │ │ ├── SpigotWorldConfig.java │ │ │ ├── TickLimiter.java │ │ │ ├── TicksPerSecondCommand.java │ │ │ ├── TrackingRange.java │ │ │ ├── ValidateUtils.java │ │ │ └── WatchdogThread.java │ └── resources │ │ ├── configurations │ │ ├── bukkit.yml │ │ ├── commands.yml │ │ └── help.yml │ │ └── log4j2.xml │ └── test │ └── java │ └── org │ └── bukkit │ ├── ArtTest.java │ ├── DyeColorsTest.java │ ├── MaterialTest.java │ ├── PerMaterialTest.java │ ├── SoundTest.java │ ├── StatisticsAndAchievementsTest.java │ ├── WorldTypeTest.java │ ├── craftbukkit │ └── inventory │ │ ├── CompositeSerialization.java │ │ ├── FactoryItemMaterialTest.java │ │ ├── ItemFactoryTest.java │ │ ├── ItemMetaImplementationOverrideTest.java │ │ ├── ItemMetaTest.java │ │ ├── ItemStackBookTest.java │ │ ├── ItemStackEnchantStorageTest.java │ │ ├── ItemStackFireworkChargeTest.java │ │ ├── ItemStackFireworkTest.java │ │ ├── ItemStackLeatherTest.java │ │ ├── ItemStackLoreEnchantmentTest.java │ │ ├── ItemStackMapTest.java │ │ ├── ItemStackPotionsTest.java │ │ ├── ItemStackSkullTest.java │ │ ├── ItemStackTest.java │ │ └── NMSCraftItemStackTest.java │ ├── map │ └── MapTest.java │ ├── potion │ └── PotionTest.java │ └── support │ ├── AbstractTestingBase.java │ ├── DummyEnchantments.java │ ├── DummyPotions.java │ ├── DummyServer.java │ ├── Matchers.java │ └── Util.java ├── LICENSE.md ├── README.md └── pom.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/.gitmodules -------------------------------------------------------------------------------- /BurritoSpigot-API/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/pom.xml -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/NullTimingHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/NullTimingHandler.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/Timing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/Timing.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingData.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingHandler.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingHistory.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingIdentifier.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/Timings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/Timings.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsCommand.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsExport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsExport.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/timings/TimingsManager.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/util/JSONUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/util/JSONUtil.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/util/LoadingIntMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/util/LoadingIntMap.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/util/LoadingMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/util/LoadingMap.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/co/aikar/util/MRUMapCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/co/aikar/util/MRUMapCache.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Achievement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Achievement.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Art.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Art.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/BanEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/BanEntry.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/BanList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/BanList.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/BlockChangeDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/BlockChangeDelegate.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Bukkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Bukkit.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/ChatColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/ChatColor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Chunk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Chunk.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/ChunkSnapshot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/ChunkSnapshot.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/CoalType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/CoalType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Color.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/CropState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/CropState.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Difficulty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Difficulty.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/DyeColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/DyeColor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Effect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Effect.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/EntityEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/EntityEffect.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/FireworkEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/FireworkEffect.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/GameMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/GameMode.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/GrassSpecies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/GrassSpecies.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Instrument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Instrument.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Location.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Material.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Material.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/NetherWartsState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/NetherWartsState.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Note.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Note.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/OfflinePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/OfflinePlayer.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/PortalType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/PortalType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Rotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Rotation.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/SandstoneType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/SandstoneType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Server.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/SkullType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/SkullType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Sound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Sound.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Statistic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Statistic.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/TravelAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/TravelAgent.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/TreeSpecies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/TreeSpecies.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/TreeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/TreeType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/UnsafeValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/UnsafeValues.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Utility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Utility.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/Warning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/Warning.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/WeatherType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/WeatherType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/World.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/World.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/WorldBorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/WorldBorder.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/WorldCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/WorldCreator.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/WorldType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/WorldType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Banner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Banner.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Beacon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Beacon.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Biome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Biome.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Block.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/BlockFace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/BlockFace.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/BlockState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/BlockState.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/BrewingStand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/BrewingStand.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Chest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Chest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/CommandBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/CommandBlock.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/ContainerBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/ContainerBlock.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/CreatureSpawner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/CreatureSpawner.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Dispenser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Dispenser.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/DoubleChest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/DoubleChest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Dropper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Dropper.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Furnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Furnace.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Hopper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Hopper.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Jukebox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Jukebox.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/NoteBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/NoteBlock.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Sign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Sign.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/Skull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/Skull.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/block/banner/Pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/block/banner/Pattern.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/Command.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/CommandExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/CommandExecutor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/CommandMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/CommandMap.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/CommandSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/CommandSender.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/PluginCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/PluginCommand.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/TabCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/TabCompleter.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/command/TabExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/command/TabExecutor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/conversations/Prompt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/conversations/Prompt.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Ageable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Ageable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Ambient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Ambient.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/AnimalTamer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/AnimalTamer.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Animals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Animals.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/ArmorStand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/ArmorStand.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Arrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Arrow.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Bat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Bat.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Blaze.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Blaze.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Boat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Boat.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/CaveSpider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/CaveSpider.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Chicken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Chicken.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Cow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Cow.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Creature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Creature.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/CreatureType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/CreatureType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Creeper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Creeper.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Damageable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Damageable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Egg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Egg.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderCrystal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderCrystal.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderDragon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderDragon.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderDragonPart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderDragonPart.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderPearl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderPearl.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EnderSignal.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Enderman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Enderman.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Endermite.java: -------------------------------------------------------------------------------- 1 | package org.bukkit.entity; 2 | 3 | public interface Endermite extends Monster { 4 | } 5 | -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Entity.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/EntityType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/EntityType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/ExperienceOrb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/ExperienceOrb.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Explosive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Explosive.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/FallingBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/FallingBlock.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/FallingSand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/FallingSand.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Fireball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Fireball.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Firework.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Firework.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Fish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Fish.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/FishHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/FishHook.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Flying.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Flying.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Ghast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Ghast.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Giant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Giant.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Golem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Golem.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Guardian.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Guardian.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Hanging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Hanging.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Horse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Horse.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/HumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/HumanEntity.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/IronGolem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/IronGolem.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Item.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/ItemFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/ItemFrame.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/LargeFireball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/LargeFireball.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/LeashHitch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/LeashHitch.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/LightningStrike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/LightningStrike.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/LivingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/LivingEntity.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/MagmaCube.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/MagmaCube.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Minecart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Minecart.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Monster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Monster.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/MushroomCow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/MushroomCow.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/NPC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/NPC.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Ocelot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Ocelot.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Painting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Painting.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Pig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Pig.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/PigZombie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/PigZombie.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Player.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/PoweredMinecart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/PoweredMinecart.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Projectile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Projectile.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Rabbit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Rabbit.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Sheep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Sheep.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Silverfish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Silverfish.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Skeleton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Skeleton.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Slime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Slime.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/SmallFireball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/SmallFireball.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Snowball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Snowball.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Snowman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Snowman.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Spider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Spider.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Squid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Squid.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/StorageMinecart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/StorageMinecart.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/TNTPrimed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/TNTPrimed.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Tameable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Tameable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/ThrownExpBottle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/ThrownExpBottle.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/ThrownPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/ThrownPotion.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Vehicle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Vehicle.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Villager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Villager.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/WaterMob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/WaterMob.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Weather.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Witch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Witch.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Wither.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Wither.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/WitherSkull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/WitherSkull.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Wolf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Wolf.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/entity/Zombie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/entity/Zombie.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/Cancellable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/Cancellable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/Event.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/EventException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/EventException.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/EventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/EventHandler.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/EventPriority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/EventPriority.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/HandlerList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/HandlerList.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/Listener.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/block/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/block/Action.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/block/BlockEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/block/BlockEvent.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/world/ChunkEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/world/ChunkEvent.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/event/world/WorldEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/event/world/WorldEvent.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/help/HelpMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/help/HelpMap.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/help/HelpTopic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/help/HelpTopic.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/help/HelpTopicFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/help/HelpTopicFactory.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/help/IndexHelpTopic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/help/IndexHelpTopic.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/EquipmentSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/EquipmentSlot.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/FurnaceRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/FurnaceRecipe.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/Inventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/Inventory.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/InventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/InventoryView.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemFactory.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemFlag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemFlag.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/ItemStack.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/Recipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/Recipe.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/ShapedRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/ShapedRecipe.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/BookMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/BookMeta.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/ItemMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/ItemMeta.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/MapMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/inventory/meta/MapMeta.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapCanvas.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapCursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapCursor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapCursorCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapCursorCollection.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapFont.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapPalette.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapRenderer.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MapView.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/map/MinecraftFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/map/MinecraftFont.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Attachable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Attachable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Banner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Banner.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Bed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Bed.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Button.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Button.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Cake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Cake.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Cauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Cauldron.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Chest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Chest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Coal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Coal.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/CocoaPlant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/CocoaPlant.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Colorable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Colorable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Command.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Crops.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Crops.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/DetectorRail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/DetectorRail.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Diode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Diode.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Directional.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Directional.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Dispenser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Dispenser.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Door.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Door.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Dye.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Dye.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/EnderChest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/EnderChest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/ExtendedRails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/ExtendedRails.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/FlowerPot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/FlowerPot.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Furnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Furnace.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Gate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Gate.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Ladder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Ladder.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Leaves.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Leaves.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Lever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Lever.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/LongGrass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/LongGrass.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/MaterialData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/MaterialData.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/MonsterEggs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/MonsterEggs.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Mushroom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Mushroom.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/NetherWarts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/NetherWarts.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Openable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Openable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/PoweredRail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/PoweredRail.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/PressurePlate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/PressurePlate.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/PressureSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/PressureSensor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Pumpkin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Pumpkin.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Rails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Rails.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Redstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Redstone.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/RedstoneTorch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/RedstoneTorch.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/RedstoneWire.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/RedstoneWire.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Sandstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Sandstone.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Sign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Sign.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Skull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Skull.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/SmoothBrick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/SmoothBrick.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/SpawnEgg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/SpawnEgg.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Stairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Stairs.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Step.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Step.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Torch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Torch.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/TrapDoor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/TrapDoor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Tree.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Tripwire.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Tripwire.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/TripwireHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/TripwireHook.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Vine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Vine.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/WoodenStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/WoodenStep.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/material/Wool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/material/Wool.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/metadata/MetadataStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/metadata/MetadataStore.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/metadata/MetadataValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/metadata/MetadataValue.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/metadata/Metadatable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/metadata/Metadatable.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/permissions/Permissible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/permissions/Permissible.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/permissions/Permission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/permissions/Permission.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/EventExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/EventExecutor.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/Plugin.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginAwareness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginAwareness.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginBase.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLoadOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLoadOrder.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLoader.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginLogger.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/PluginManager.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/ServicePriority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/ServicePriority.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/ServicesManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/ServicesManager.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/plugin/java/JavaPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/plugin/java/JavaPlugin.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/potion/Potion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/potion/Potion.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionBrewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionBrewer.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionEffect.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionEffectType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionEffectType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/potion/PotionType.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scheduler/BukkitTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scheduler/BukkitTask.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scheduler/BukkitWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scheduler/BukkitWorker.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Criterias.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Criterias.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/DisplaySlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/DisplaySlot.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Objective.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Objective.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Score.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Score.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Scoreboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Scoreboard.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/scoreboard/Team.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/BlockIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/BlockIterator.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/BlockVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/BlockVector.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/CachedServerIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/CachedServerIcon.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/ChatPaginator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/ChatPaginator.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/EulerAngle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/EulerAngle.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/FileUtil.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/Java15Compat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/Java15Compat.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/NumberConversions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/NumberConversions.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/StringUtil.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/Vector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/Vector.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/bukkit/util/io/Wrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/bukkit/util/io/Wrapper.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/github/paperspigot/Title.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/github/paperspigot/Title.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/java/org/spigotmc/CustomTimingsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/java/org/spigotmc/CustomTimingsHandler.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/block/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/block/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/command/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/command/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/entity/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/entity/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/event/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/event/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/help/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/help/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/map/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/map/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * More generalized classes in the API. 3 | */ 4 | package org.bukkit; 5 | 6 | -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/plugin/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/plugin/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/potion/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/potion/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/util/io/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/util/io/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/org/bukkit/util/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/org/bukkit/util/package-info.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/main/javadoc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/main/javadoc/overview.html -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/ArtTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/ArtTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/BukkitMirrorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/BukkitMirrorTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/ChatColorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/ChatColorTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/ChatPaginatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/ChatPaginatorTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/CoalTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/CoalTypeTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/ColorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/ColorTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/CropStateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/CropStateTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/DifficultyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/DifficultyTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/DyeColorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/DyeColorTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/EffectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/EffectTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/EntityEffectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/EntityEffectTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/GameModeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/GameModeTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/GrassSpeciesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/GrassSpeciesTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/InstrumentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/InstrumentTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/LocationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/LocationTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/MaterialTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/MaterialTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/NoteTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/NoteTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/TestServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/TestServer.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/TreeSpeciesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/TreeSpeciesTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/WorldTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/WorldTypeTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/event/TestEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/event/TestEvent.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/plugin/TestPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/plugin/TestPlugin.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/potion/PotionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/potion/PotionTest.java -------------------------------------------------------------------------------- /BurritoSpigot-API/src/test/java/org/bukkit/util/StringUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-API/src/test/java/org/bukkit/util/StringUtilTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/README.md -------------------------------------------------------------------------------- /BurritoSpigot-Server/burrito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/burrito -------------------------------------------------------------------------------- /BurritoSpigot-Server/deprecation-mappings.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/deprecation-mappings.at -------------------------------------------------------------------------------- /BurritoSpigot-Server/deprecation-mappings.csrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/deprecation-mappings.csrg -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/AttributeRanged.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/AttributeRanged.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BaseBlockPosition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BaseBlockPosition.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BiomeBase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BiomeBase.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BiomeMesa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BiomeMesa.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BiomeTheEndDecorator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BiomeTheEndDecorator.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Block.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Block.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockAnvil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockAnvil.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockBloodStone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockBloodStone.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockBrewingStand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockBrewingStand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockButtonAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockButtonAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockCactus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockCactus.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockCake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockCake.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockCocoa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockCocoa.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockCommand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockCommand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockCrops.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockCrops.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDaylightDetector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDaylightDetector.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDiodeAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDiodeAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDispenser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDispenser.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDoor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDoor.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDragonEgg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDragonEgg.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockDropper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockDropper.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockEnderPortal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockEnderPortal.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockFalling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockFalling.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockFire.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockFire.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockFlowerPot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockFlowerPot.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockFlowing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockFlowing.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockFluids.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockFluids.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockGrass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockGrass.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockHopper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockHopper.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockIce.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockIce.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockJukeBox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockJukeBox.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockLeaves.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockLeaves.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockLever.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockLever.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMinecartDetector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMinecartDetector.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMinecartTrackAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMinecartTrackAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMobSpawner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMobSpawner.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMonsterEggs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMonsterEggs.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMushroom.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMushroom.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockMycel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockMycel.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockNetherWart.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockNetherWart.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockOre.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockOre.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPiston.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPiston.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPlant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPlant.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPortal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPortal.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPosition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPosition.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPoweredRail.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPoweredRail.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPressurePlateAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPressurePlateAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPressurePlateBinary.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPressurePlateBinary.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPressurePlateWeighted.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPressurePlateWeighted.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockPumpkin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockPumpkin.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockRedstoneLamp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockRedstoneLamp.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockRedstoneOre.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockRedstoneOre.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockRedstoneTorch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockRedstoneTorch.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockRedstoneWire.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockRedstoneWire.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockReed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockReed.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockSapling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockSapling.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockSkull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockSkull.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockSnow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockSnow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockSoil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockSoil.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockState.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockState.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStateBoolean.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStateBoolean.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStateEnum.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStateEnum.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStateInteger.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStateInteger.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStateList.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStateList.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStationary.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStationary.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockStem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockStem.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockTNT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockTNT.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockTrapdoor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockTrapdoor.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockTripwire.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockTripwire.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockTripwireHook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockTripwireHook.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/BlockVine.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/BlockVine.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChatBaseComponent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChatBaseComponent.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChatModifier.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChatModifier.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Chunk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Chunk.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkProviderFlat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkProviderFlat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkProviderGenerate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkProviderGenerate.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkProviderHell.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkProviderHell.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkProviderServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkProviderServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkRegionLoader.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkRegionLoader.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ChunkSection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ChunkSection.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandBlockListenerAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandBlockListenerAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandDispatcher.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandDispatcher.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandExecute.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandExecute.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandGamemode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandGamemode.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandGamerule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandGamerule.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandScoreboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandScoreboard.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandSpreadPlayers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandSpreadPlayers.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CommandTp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CommandTp.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Container.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Container.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerAnvil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerAnvil.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerBeacon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerBeacon.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerBrewingStand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerBrewingStand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerDispenser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerDispenser.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerEnchantTable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerEnchantTable.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerFurnace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerFurnace.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerHopper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerHopper.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerHorse.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerHorse.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerMerchant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerMerchant.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerPlayer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerPlayer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ContainerWorkbench.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ContainerWorkbench.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CraftingManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CraftingManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/CrashReport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/CrashReport.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/DataWatcher.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/DataWatcher.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/DedicatedServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/DedicatedServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/DispenseBehaviorItem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/DispenseBehaviorItem.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/DispenseBehaviorProjectile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/DispenseBehaviorProjectile.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/DispenserRegistry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/DispenserRegistry.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EULA.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EULA.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Enchantment.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Enchantment.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EnchantmentManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EnchantmentManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EnchantmentThorns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EnchantmentThorns.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Entity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Entity.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityAgeable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityAgeable.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityAnimal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityAnimal.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityArmorStand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityArmorStand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityArrow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityArrow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityBoat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityBoat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityChicken.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityChicken.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityCow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityCow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityCreature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityCreature.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityCreeper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityCreeper.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityDamageSourceIndirect.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityDamageSourceIndirect.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityEgg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityEgg.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityEnderCrystal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityEnderCrystal.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityEnderDragon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityEnderDragon.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityEnderPearl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityEnderPearl.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityEnderman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityEnderman.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityExperienceOrb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityExperienceOrb.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityFallingBlock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityFallingBlock.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityFireball.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityFireball.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityFireworks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityFireworks.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityFishingHook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityFishingHook.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityGhast.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityGhast.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityHanging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityHanging.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityHorse.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityHorse.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityHuman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityHuman.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityInsentient.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityInsentient.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityIronGolem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityIronGolem.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityItem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityItem.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityItemFrame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityItemFrame.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityLargeFireball.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityLargeFireball.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityLeash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityLeash.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityLightning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityLightning.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityLiving.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityLiving.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMinecartAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMinecartAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMinecartCommandBlock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMinecartCommandBlock.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMinecartContainer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMinecartContainer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMinecartFurnace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMinecartFurnace.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMonster.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMonster.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityMushroomCow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityMushroomCow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityOcelot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityOcelot.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityPainting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityPainting.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityPig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityPig.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityPlayer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityPlayer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityPotion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityPotion.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityProjectile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityProjectile.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityRabbit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityRabbit.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySheep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySheep.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySilverfish.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySilverfish.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySkeleton.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySkeleton.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySlice.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySlice.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySlime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySlime.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySmallFireball.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySmallFireball.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySnowman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySnowman.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySpider.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySpider.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntitySquid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntitySquid.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityTNTPrimed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityTNTPrimed.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityThrownExpBottle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityThrownExpBottle.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityTracker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityTracker.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityTrackerEntry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityTrackerEntry.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityVillager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityVillager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityWither.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityWither.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityWitherSkull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityWitherSkull.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityWolf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityWolf.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/EntityZombie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/EntityZombie.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ExpirableListEntry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ExpirableListEntry.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Explosion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Explosion.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/FileIOThread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/FileIOThread.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/FoodMetaData.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/FoodMetaData.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/GameProfileBanEntry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/GameProfileBanEntry.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/GenericAttributes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/GenericAttributes.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/HandshakeListener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/HandshakeListener.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/IBlockState.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/IBlockState.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/IDataManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/IDataManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/IInventory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/IInventory.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/IRecipe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/IRecipe.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/IntCache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/IntCache.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryCraftResult.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryCraftResult.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryCrafting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryCrafting.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryEnderChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryEnderChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryHorseChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryHorseChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryLargeChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryLargeChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventoryMerchant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventoryMerchant.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/InventorySubcontainer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/InventorySubcontainer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemArmor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemArmor.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemBlock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemBlock.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemBoat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemBoat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemBookAndQuill.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemBookAndQuill.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemBow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemBow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemBucket.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemBucket.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemDoor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemDoor.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemDye.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemDye.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemFireball.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemFireball.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemFishingRod.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemFishingRod.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemFlintAndSteel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemFlintAndSteel.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemHanging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemHanging.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemLeash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemLeash.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemMapEmpty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemMapEmpty.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemMinecart.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemMinecart.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemMonsterEgg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemMonsterEgg.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemRecord.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemRecord.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemSkull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemSkull.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemStack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemStack.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemWaterLily.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemWaterLily.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ItemWorldMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ItemWorldMap.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/JsonList.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/JsonList.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/LegacyPingHandler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/LegacyPingHandler.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/LoginListener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/LoginListener.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/MethodProfiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/MethodProfiler.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/MinecraftServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/MinecraftServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/MobEffectAttackDamage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/MobEffectAttackDamage.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/MobEffectList.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/MobEffectList.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/MobSpawnerAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/MobSpawnerAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NBTBase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NBTBase.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NBTCompressedStreamTools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NBTCompressedStreamTools.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NBTTagByteArray.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NBTTagByteArray.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NBTTagIntArray.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NBTTagIntArray.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NBTTagList.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NBTTagList.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NameReferencingFileConverter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NameReferencingFileConverter.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NavigationAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NavigationAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NetworkManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NetworkManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/NextTickListEntry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/NextTickListEntry.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/OldChunkLoader.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/OldChunkLoader.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketDataSerializer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketDataSerializer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketDecoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketDecoder.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketEncoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketEncoder.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketLoginInEncryptionBegin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketLoginInEncryptionBegin.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInArmAnimation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInArmAnimation.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInBlockPlace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInBlockPlace.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInChat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInChat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInCloseWindow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInCloseWindow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInCustomPayload.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInCustomPayload.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayInSetCreativeSlot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayInSetCreativeSlot.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayOutChat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayOutChat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayOutMapChunk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayOutMapChunk.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayOutMapChunkBulk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayOutMapChunkBulk.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayOutOpenWindow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayOutOpenWindow.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketPlayOutTitle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketPlayOutTitle.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PacketStatusListener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PacketStatusListener.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Path.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalBreakDoor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalBreakDoor.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalBreed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalBreed.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalDefendVillage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalDefendVillage.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalEatTile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalEatTile.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalFloat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalFloat.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalHurtByTarget.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalHurtByTarget.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalMakeLove.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalMakeLove.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalOwnerHurtTarget.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalOwnerHurtTarget.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalPanic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalPanic.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalSelector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalSelector.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalSit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalSit.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderGoalTame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderGoalTame.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PathfinderNormal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PathfinderNormal.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PersistentCollection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PersistentCollection.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PlayerChunkMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PlayerChunkMap.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PlayerConnection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PlayerConnection.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PlayerInteractManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PlayerInteractManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PlayerInventory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PlayerInventory.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PlayerList.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PlayerList.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PortalTravelAgent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PortalTravelAgent.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/PropertyManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/PropertyManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipeArmorDye.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipeArmorDye.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipeBookClone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipeBookClone.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipeFireworks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipeFireworks.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipeMapClone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipeMapClone.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipeRepair.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipeRepair.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipesBanner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipesBanner.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RecipesFurnace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RecipesFurnace.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RegionFile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RegionFile.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RegionFileCache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RegionFileCache.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/RemoteControlCommandListener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/RemoteControlCommandListener.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ScoreboardServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ScoreboardServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/SecondaryWorldServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/SecondaryWorldServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ServerConnection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ServerConnection.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ServerStatisticManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ServerStatisticManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ShapedRecipes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ShapedRecipes.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/ShapelessRecipes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/ShapelessRecipes.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Slot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Slot.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/SlotFurnaceResult.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/SlotFurnaceResult.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/SpawnerCreature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/SpawnerCreature.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/StatisticManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/StatisticManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/StructureGenerator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/StructureGenerator.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntity.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityBanner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityBanner.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityBeacon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityBeacon.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityBrewingStand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityBrewingStand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityCommand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityCommand.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityDispenser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityDispenser.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityEnderChest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityEnderChest.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityFurnace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityFurnace.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityHopper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityHopper.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityNote.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityNote.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntityPiston.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntityPiston.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntitySign.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntitySign.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/TileEntitySkull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/TileEntitySkull.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/UserCache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/UserCache.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/Village.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/Village.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/VillageSiege.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/VillageSiege.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/World.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/World.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldBorder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldBorder.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldData.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldData.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenForestTree.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenForestTree.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenGroundBush.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenGroundBush.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenLargeFeature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenLargeFeature.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenMegaTreeAbstract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenMegaTreeAbstract.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenPackedIce2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenPackedIce2.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenRegistration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenRegistration.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenVillage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenVillage.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldGenVillagePieces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldGenVillagePieces.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldManager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldManager.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldMap.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldNBTStorage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldNBTStorage.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/nms-patches/WorldServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/nms-patches/WorldServer.patch -------------------------------------------------------------------------------- /BurritoSpigot-Server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/pom.xml -------------------------------------------------------------------------------- /BurritoSpigot-Server/scripts/applyPatches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/scripts/applyPatches.sh -------------------------------------------------------------------------------- /BurritoSpigot-Server/scripts/decompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/scripts/decompile.sh -------------------------------------------------------------------------------- /BurritoSpigot-Server/scripts/makePatches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/scripts/makePatches.sh -------------------------------------------------------------------------------- /BurritoSpigot-Server/scripts/remap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/scripts/remap.sh -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/bukkit/craftbukkit/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/bukkit/craftbukkit/Main.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/ActivationRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/ActivationRange.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/AntiXray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/AntiXray.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/AsyncCatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/AsyncCatcher.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/LimitStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/LimitStream.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/Metrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/Metrics.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/RestartCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/RestartCommand.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/SneakyThrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/SneakyThrow.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/SpigotConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/SpigotConfig.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/TickLimiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/TickLimiter.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/TrackingRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/TrackingRange.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/ValidateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/ValidateUtils.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/java/org/spigotmc/WatchdogThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/java/org/spigotmc/WatchdogThread.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/resources/configurations/bukkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/resources/configurations/bukkit.yml -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/resources/configurations/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/resources/configurations/commands.yml -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/resources/configurations/help.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/resources/configurations/help.yml -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/ArtTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/ArtTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/DyeColorsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/DyeColorsTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/MaterialTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/MaterialTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/PerMaterialTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/PerMaterialTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/SoundTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/SoundTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/WorldTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/WorldTypeTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/map/MapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/map/MapTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/potion/PotionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/potion/PotionTest.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/support/Matchers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/support/Matchers.java -------------------------------------------------------------------------------- /BurritoSpigot-Server/src/test/java/org/bukkit/support/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/BurritoSpigot-Server/src/test/java/org/bukkit/support/Util.java -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CobbleSword/BurritoSpigot/HEAD/pom.xml --------------------------------------------------------------------------------