aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/plugin/fishing/block
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-08 14:23:14 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-08 14:23:14 +1000
commit99f6845bd32373cc84350496cda9cefbcff5298f (patch)
tree86bae64bc9878d97a4e0f7b356d797a406b1c71b /src/Java/gtPlusPlus/plugin/fishing/block
parentf4ac62247a54c38466fb7544aae63e6d97fb2740 (diff)
downloadGT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.tar.gz
GT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.tar.bz2
GT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.zip
+ Added Plugin system.
$ Fixed issue with Fishing Pond.
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/fishing/block')
-rw-r--r--src/Java/gtPlusPlus/plugin/fishing/block/BlockFishEggs.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/plugin/fishing/block/BlockFishEggs.java b/src/Java/gtPlusPlus/plugin/fishing/block/BlockFishEggs.java
new file mode 100644
index 0000000000..c11d4fa333
--- /dev/null
+++ b/src/Java/gtPlusPlus/plugin/fishing/block/BlockFishEggs.java
@@ -0,0 +1,12 @@
+package gtPlusPlus.plugin.fishing.block;
+
+import net.minecraft.block.Block;
+import net.minecraft.block.material.Material;
+
+public class BlockFishEggs extends Block{
+
+ protected BlockFishEggs() {
+ super(Material.water);
+ }
+
+}