├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .idea ├── .gitignore ├── RedstoneCircuit.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── php.xml └── vcs.xml ├── .poggit.yml ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources ├── block_id_map.json └── config.yml └── src └── tedo0627 └── redstonecircuit ├── RedstoneCircuit.php ├── block ├── BlockEntityInitializeTrait.php ├── BlockPowerHelper.php ├── BlockTable.php ├── BlockUpdateHelper.php ├── CommandBlockTrait.php ├── ILinkRedstoneWire.php ├── IRedstoneComponent.php ├── IRedstoneDiode.php ├── LinkRedstoneWireTrait.php ├── MovingBlockTrait.php ├── PistonResolver.php ├── PistonTrait.php ├── RedstoneComponentTrait.php ├── dispenser │ ├── ArmorDispenseBehavior.php │ ├── BoneMealDispenseBehavior.php │ ├── BucketDispenseBehavior.php │ ├── DefaultItemDispenseBehavior.php │ ├── DispenseItemBehavior.php │ ├── FlintSteelDispenseBehavior.php │ ├── GlassBottleDispenseBehavior.php │ ├── ProjectileDispenseBehavior.php │ ├── ShulkerBoxDispenseBehavior.php │ └── TNTDispenseBehavior.php ├── entity │ ├── BlockEntityChest.php │ ├── BlockEntityCommand.php │ ├── BlockEntityDispenser.php │ ├── BlockEntityDropper.php │ ├── BlockEntityHopper.php │ ├── BlockEntityMoving.php │ ├── BlockEntityNote.php │ ├── BlockEntityObserver.php │ ├── BlockEntityPistonArm.php │ ├── BlockEntitySkull.php │ ├── BlockEntityTarget.php │ └── IgnorePiston.php ├── inventory │ ├── CommandInventory.php │ ├── DispenserInventory.php │ ├── DropperInventory.php │ ├── IWindowType.php │ ├── WrappedChestInventory.php │ └── WrappedDoubleChestInventory.php ├── mechanism │ ├── BlockActivatorRail.php │ ├── BlockCommand.php │ ├── BlockDispenser.php │ ├── BlockDropper.php │ ├── BlockFenceGate.php │ ├── BlockHopper.php │ ├── BlockIronDoor.php │ ├── BlockIronTrapdoor.php │ ├── BlockMoving.php │ ├── BlockNote.php │ ├── BlockPiston.php │ ├── BlockPistonArmCollision.php │ ├── BlockPoweredRail.php │ ├── BlockRedstoneLamp.php │ ├── BlockSkull.php │ ├── BlockStickyPiston.php │ ├── BlockStickyPistonArmCollision.php │ ├── BlockTNT.php │ ├── BlockWoodenDoor.php │ └── BlockWoodenTrapdoor.php ├── power │ ├── BlockDaylightSensor.php │ ├── BlockJukeBox.php │ ├── BlockLever.php │ ├── BlockObserver.php │ ├── BlockRedstone.php │ ├── BlockRedstoneTorch.php │ ├── BlockStoneButton.php │ ├── BlockStonePressurePlate.php │ ├── BlockTarget.php │ ├── BlockTrappedChest.php │ ├── BlockTripwire.php │ ├── BlockTripwireHook.php │ ├── BlockWeightedPressurePlateHeavy.php │ ├── BlockWeightedPressurePlateLight.php │ ├── BlockWoodenButton.php │ └── BlockWoodenPressurePlate.php └── transmission │ ├── BlockRedstoneComparator.php │ ├── BlockRedstoneRepeater.php │ └── BlockRedstoneWire.php ├── event ├── BlockDispenseEvent.php ├── BlockPistonEvent.php ├── BlockPistonExtendEvent.php ├── BlockPistonRetractEvent.php ├── BlockRedstonePowerUpdateEvent.php ├── BlockRedstoneSignalUpdateEvent.php ├── HopperMoveItemEvent.php └── HopperPickupItemEvent.php ├── listener ├── CommandBlockListener.php ├── InventoryListener.php └── TargetBlockListener.php ├── loader ├── BlockEntityLoader.php ├── BlockLoader.php ├── ItemBlockLoader.php └── Loader.php └── sound ├── AttachSound.php ├── ClickFailSound.php ├── DetachSound.php ├── PistonInSound.php └── PistonOutSound.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/RedstoneCircuit.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/RedstoneCircuit.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/block_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/resources/block_id_map.json -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/RedstoneCircuit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/RedstoneCircuit.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/BlockEntityInitializeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/BlockEntityInitializeTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/BlockPowerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/BlockPowerHelper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/BlockTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/BlockTable.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/BlockUpdateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/BlockUpdateHelper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/CommandBlockTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/CommandBlockTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/ILinkRedstoneWire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/ILinkRedstoneWire.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/IRedstoneComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/IRedstoneComponent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/IRedstoneDiode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/IRedstoneDiode.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/LinkRedstoneWireTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/LinkRedstoneWireTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/MovingBlockTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/MovingBlockTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/PistonResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/PistonResolver.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/PistonTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/PistonTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/RedstoneComponentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/RedstoneComponentTrait.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/ArmorDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/ArmorDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/BoneMealDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/BoneMealDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/BucketDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/BucketDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/DefaultItemDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/DefaultItemDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/DispenseItemBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/DispenseItemBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/FlintSteelDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/FlintSteelDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/GlassBottleDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/GlassBottleDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/ProjectileDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/ProjectileDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/ShulkerBoxDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/ShulkerBoxDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/dispenser/TNTDispenseBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/dispenser/TNTDispenseBehavior.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityChest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityChest.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityCommand.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityDispenser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityDispenser.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityDropper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityDropper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityHopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityHopper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityMoving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityMoving.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityNote.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityObserver.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityPistonArm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityPistonArm.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntitySkull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntitySkull.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/BlockEntityTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/BlockEntityTarget.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/entity/IgnorePiston.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/entity/IgnorePiston.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/CommandInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/CommandInventory.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/DispenserInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/DispenserInventory.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/DropperInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/DropperInventory.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/IWindowType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/IWindowType.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/WrappedChestInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/WrappedChestInventory.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/inventory/WrappedDoubleChestInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/inventory/WrappedDoubleChestInventory.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockActivatorRail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockActivatorRail.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockCommand.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockDispenser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockDispenser.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockDropper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockDropper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockFenceGate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockFenceGate.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockHopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockHopper.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockIronDoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockIronDoor.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockIronTrapdoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockIronTrapdoor.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockMoving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockMoving.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockNote.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockPiston.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockPiston.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockPistonArmCollision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockPistonArmCollision.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockPoweredRail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockPoweredRail.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockRedstoneLamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockRedstoneLamp.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockSkull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockSkull.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockStickyPiston.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockStickyPiston.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockStickyPistonArmCollision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockStickyPistonArmCollision.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockTNT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockTNT.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockWoodenDoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockWoodenDoor.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/mechanism/BlockWoodenTrapdoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/mechanism/BlockWoodenTrapdoor.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockDaylightSensor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockDaylightSensor.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockJukeBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockJukeBox.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockLever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockLever.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockObserver.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockRedstone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockRedstone.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockRedstoneTorch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockRedstoneTorch.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockStoneButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockStoneButton.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockStonePressurePlate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockStonePressurePlate.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockTarget.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockTrappedChest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockTrappedChest.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockTripwire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockTripwire.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockTripwireHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockTripwireHook.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockWeightedPressurePlateHeavy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockWeightedPressurePlateHeavy.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockWeightedPressurePlateLight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockWeightedPressurePlateLight.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockWoodenButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockWoodenButton.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/power/BlockWoodenPressurePlate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/power/BlockWoodenPressurePlate.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneComparator.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneRepeater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneRepeater.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneWire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/block/transmission/BlockRedstoneWire.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockDispenseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockDispenseEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockPistonEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockPistonEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockPistonExtendEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockPistonExtendEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockPistonRetractEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockPistonRetractEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockRedstonePowerUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockRedstonePowerUpdateEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/BlockRedstoneSignalUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/BlockRedstoneSignalUpdateEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/HopperMoveItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/HopperMoveItemEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/event/HopperPickupItemEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/event/HopperPickupItemEvent.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/listener/CommandBlockListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/listener/CommandBlockListener.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/listener/InventoryListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/listener/InventoryListener.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/listener/TargetBlockListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/listener/TargetBlockListener.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/loader/BlockEntityLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/loader/BlockEntityLoader.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/loader/BlockLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/loader/BlockLoader.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/loader/ItemBlockLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/loader/ItemBlockLoader.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/loader/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/loader/Loader.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/sound/AttachSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/sound/AttachSound.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/sound/ClickFailSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/sound/ClickFailSound.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/sound/DetachSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/sound/DetachSound.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/sound/PistonInSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/sound/PistonInSound.php -------------------------------------------------------------------------------- /src/tedo0627/redstonecircuit/sound/PistonOutSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedo0627/RedstoneCircuit/HEAD/src/tedo0627/redstonecircuit/sound/PistonOutSound.php --------------------------------------------------------------------------------