From e5c3636f0bf2534af4a3dc1585abc5ba4750df92 Mon Sep 17 00:00:00 2001 From: Matt Caughey Date: Tue, 1 Apr 2014 10:31:54 -0400 Subject: [PATCH] Made the April Fools joke a liiiiiiiiiiitle less invasive --- .../blocks/BlockBOPColorizedLeaves.java | 51 ++---------------- .../common/blocks/BlockBOPFoliage.java | 30 +---------- .../common/blocks/BlockBOPLeaves.java | 51 ++---------------- .../common/blocks/BlockBOPLog.java | 34 +----------- .../common/blocks/BlockBOPMushroom.java | 37 ++++++++++++- .../textures/blocks/foolgrass.png | Bin 641 -> 0 bytes .../textures/blocks/foolleaves_better.png | Bin 1021 -> 0 bytes .../textures/blocks/foolleaves_fancy.png | Bin 742 -> 0 bytes .../textures/blocks/foolleaves_fast.png | Bin 823 -> 0 bytes .../textures/blocks/foolleaves_round.png | Bin 686 -> 0 bytes .../textures/blocks/foollog_heart.png | Bin 931 -> 0 bytes .../textures/blocks/foollog_side.png | Bin 833 -> 0 bytes .../textures/blocks/frankershroom.png | Bin 0 -> 721 bytes .../textures/blocks/kappabello.png | Bin 0 -> 716 bytes .../textures/blocks/toadhard.png | Bin 0 -> 794 bytes 15 files changed, 48 insertions(+), 155 deletions(-) delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foolgrass.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_better.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_fancy.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_fast.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_round.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foollog_heart.png delete mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/foollog_side.png create mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/frankershroom.png create mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/kappabello.png create mode 100644 src/main/resources/assets/biomesoplenty/textures/blocks/toadhard.png diff --git a/src/main/java/biomesoplenty/common/blocks/BlockBOPColorizedLeaves.java b/src/main/java/biomesoplenty/common/blocks/BlockBOPColorizedLeaves.java index e20f6035f..c214f11b0 100644 --- a/src/main/java/biomesoplenty/common/blocks/BlockBOPColorizedLeaves.java +++ b/src/main/java/biomesoplenty/common/blocks/BlockBOPColorizedLeaves.java @@ -65,13 +65,6 @@ public class BlockBOPColorizedLeaves extends BlockLeavesBase implements IShearab //TODO: this.setCreativeTab() this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty); } - - public static boolean isTime() - { - Calendar calendar = Calendar.getInstance(); - - return (calendar.get(2) + 1 == 4 && calendar.get(5) == 1); - } @Override //TODO: registerIcons() @@ -83,51 +76,17 @@ public class BlockBOPColorizedLeaves extends BlockLeavesBase implements IShearab { for (int i = 0; i < leaves.length; ++i) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_better"); - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); - } - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); - } + textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); + textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); + textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); } } else { for (int i = 0; i < leaves.length; ++i) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fast"); - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - } - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - } + textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); + textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); } } } diff --git a/src/main/java/biomesoplenty/common/blocks/BlockBOPFoliage.java b/src/main/java/biomesoplenty/common/blocks/BlockBOPFoliage.java index 00e984be7..e6693ba76 100644 --- a/src/main/java/biomesoplenty/common/blocks/BlockBOPFoliage.java +++ b/src/main/java/biomesoplenty/common/blocks/BlockBOPFoliage.java @@ -61,13 +61,6 @@ public class BlockBOPFoliage extends BlockTallGrass implements IShearable this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty); } - - public static boolean isTime() - { - Calendar calendar = Calendar.getInstance(); - - return (calendar.get(2) + 1 == 4 && calendar.get(5) == 1); - } @Override //TODO: registerIcons() @@ -77,28 +70,7 @@ public class BlockBOPFoliage extends BlockTallGrass implements IShearable for (int i = 0; i < textures.length; ++i) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - if (i != 1 && i != 2 && i != 10 && i != 11) - { - textures[i] = iconRegister.registerIcon("biomesoplenty:"+foliageTypes[i]); - } - else - { - textures[i] = iconRegister.registerIcon("biomesoplenty:foolgrass"); - } - } - else - { - textures[i] = iconRegister.registerIcon("biomesoplenty:"+foliageTypes[i]); - } - } - else - { - textures[i] = iconRegister.registerIcon("biomesoplenty:"+foliageTypes[i]); - } + textures[i] = iconRegister.registerIcon("biomesoplenty:"+foliageTypes[i]); } hedgeTrunk = iconRegister.registerIcon("biomesoplenty:" + "hedge_trunk"); diff --git a/src/main/java/biomesoplenty/common/blocks/BlockBOPLeaves.java b/src/main/java/biomesoplenty/common/blocks/BlockBOPLeaves.java index d28099e31..36ff9756e 100644 --- a/src/main/java/biomesoplenty/common/blocks/BlockBOPLeaves.java +++ b/src/main/java/biomesoplenty/common/blocks/BlockBOPLeaves.java @@ -82,13 +82,6 @@ public class BlockBOPLeaves extends BlockLeavesBase implements IShearable //TODO: this.setCreativeTab() this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty); } - - public static boolean isTime() - { - Calendar calendar = Calendar.getInstance(); - - return (calendar.get(2) + 1 == 4 && calendar.get(5) == 1); - } @Override //TODO: registerIcons() @@ -98,49 +91,15 @@ public class BlockBOPLeaves extends BlockLeavesBase implements IShearable if(Loader.isModLoaded("BetterGrassAndLeavesMod")) for (int i = 0; i < leaves.length; ++i) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_better"); - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); - } - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); - } + textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_round"); + textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); + textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]); } else for (int i = 0; i < leaves.length; ++i) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:foolleaves_fast"); - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - } - } - else - { - textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); - textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); - } + textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy"); + textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast"); } } diff --git a/src/main/java/biomesoplenty/common/blocks/BlockBOPLog.java b/src/main/java/biomesoplenty/common/blocks/BlockBOPLog.java index 83af7fa3b..8066e0dd3 100644 --- a/src/main/java/biomesoplenty/common/blocks/BlockBOPLog.java +++ b/src/main/java/biomesoplenty/common/blocks/BlockBOPLog.java @@ -74,13 +74,6 @@ public class BlockBOPLog extends Block //TODO: this.setCreativeTab() this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty); } - - public static boolean isTime() - { - Calendar calendar = Calendar.getInstance(); - - return (calendar.get(2) + 1 == 4 && calendar.get(5) == 1); - } @Override //TODO: registerIcons() @@ -89,35 +82,12 @@ public class BlockBOPLog extends Block textures = new IIcon[types.length]; logHearts = new IIcon[types.length]; - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - - } - } for (int i = 0; i < types.length; ++i) { if (i != 11) { - if (!BOPConfigurationMisc.behaveNormally) - { - if (isTime()) - { - textures[i] = iconRegister.registerIcon("biomesoplenty:foollog_side"); - logHearts[i] = iconRegister.registerIcon("biomesoplenty:foollog_heart"); - } - else - { - textures[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_side"); - logHearts[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_heart"); - } - } - else - { - textures[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_side"); - logHearts[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_heart"); - } + textures[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_side"); + logHearts[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_heart"); } } diff --git a/src/main/java/biomesoplenty/common/blocks/BlockBOPMushroom.java b/src/main/java/biomesoplenty/common/blocks/BlockBOPMushroom.java index 361754194..4f6c702c1 100644 --- a/src/main/java/biomesoplenty/common/blocks/BlockBOPMushroom.java +++ b/src/main/java/biomesoplenty/common/blocks/BlockBOPMushroom.java @@ -1,5 +1,6 @@ package biomesoplenty.common.blocks; +import java.util.Calendar; import java.util.List; import net.minecraft.block.Block; @@ -15,6 +16,7 @@ import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import biomesoplenty.BiomesOPlenty; import biomesoplenty.api.BOPBlockHelper; +import biomesoplenty.common.configuration.BOPConfigurationMisc; public class BlockBOPMushroom extends BlockBush { @@ -43,6 +45,13 @@ public class BlockBOPMushroom extends BlockBush //TODO: this.setCreativeTab() this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty); } + + public static boolean isTime() + { + Calendar calendar = Calendar.getInstance(); + + return (calendar.get(2) + 1 == 4 && calendar.get(5) == 1); + } @Override //TODO: registerIcons() @@ -50,8 +59,32 @@ public class BlockBOPMushroom extends BlockBush { textures = new IIcon[plants.length]; - for (int i = 0; i < plants.length; ++i) { - textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]); + for (int i = 0; i < plants.length; ++i) + { + if (!BOPConfigurationMisc.behaveNormally) + { + if (isTime()) + { + if (i != 0 && i != 1 && i != 4) + { + textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]); + } + else + { + textures[0] = iconRegister.registerIcon("biomesoplenty:toadhard"); + textures[1] = iconRegister.registerIcon("biomesoplenty:kappabello"); + textures[4] = iconRegister.registerIcon("biomesoplenty:frankershroom"); + } + } + else + { + textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]); + } + } + else + { + textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]); + } } } diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/foolgrass.png b/src/main/resources/assets/biomesoplenty/textures/blocks/foolgrass.png deleted file mode 100644 index ca60838d90594d1c30273acfe8773b9283914361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 641 zcmV-{0)G98P)N2bPDNB8 zb~7$DE-^7j^FlWO00I3;L_t(IPi>N0OI1-6h35}QQ?tBgb}>`zC-@)EgDG12koi<6 zGQ$)VNxa|%1+56nR7}fIsbi6#QeXsW^;C%VqF8T2z4bW#=05x2KI=4KvDTh*t}(`( zYm0}qvl=}(*eO=|bs;ggUf{&up7}q)>(eUh=Mr;of`Vf?Dqqg4{6WpdT%O9SQ;G4f z)W^X{KDoBQ%t@7w43(dOHuezOaod`JV9l}mo5E|yR34DqEIiC@aJ~m=9L#~sx&q;D zkxI*n_;`f5JjrzkUSjpTLtv9$g=8o*8h^$t{*|aKx-)6@?R;Re%YoO}LwyY5`?xcF zBtOqkw*u{WX!kAty{HoLpJy94&rur6I{e;ZO+wg5Y`~9uSfMAwHq85|8opuw1;vj7 z>J7)$BbuUr%Nb^EuS-*z!J66sLBV7H(!*?(ZomI!X3>l4XNaxN&W2`l-<+=UK3}Di z;#r8E`V%&ySbOidG|u-D`vR&h%&iBKCS1vN98@1wsbMwn?j05cA-*U4o-d`S)RDWw z9&4*CStZO}4^6nZLBTLCs#BxEMu^I}5GGf8L}ePXe)8sU6p}l{V`MTwq8!B$)NVo4 zPyd&>T!TUtgte?NgdtRK5*wth&HWqi!g!U!P7=2{S3qE{LP;uJ#JUiP@U(;M)@mh! b_33&577`Edd{0U>00000NkvXXu0mjf*4!ij diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_better.png b/src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_better.png deleted file mode 100644 index 1a544c9b43dcf8a63102b72c9f30ebf36cca770d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1021 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qRNAp5A000AQNklJ-@5OpKC5JAMMC}^z;t`!yh z37_Z8WYU?*ZS$CRo7jJ(+sedd~i zju&Bce^L=UD#17(fN^GFfg;U&?&*TQZfzvjG*mN$TZFoth?k+IAfA@(*fv|7kO1pa+JQyx#Jp<``u>pK+yp*8=#8B`A5A$b{&A%HTZ`viE{$y%U5^3B}vJjiT$NL`zL8 zrjF-sd{}2*(Q5dG1*E8`Z~`&ei4>jnrl%ovzE{!xSwrV*6=}+NeOyNUPU|)>s^u3J z;6(fwS2`;aoecEMtKcfvLHE1=PXwt8RE9^aaS1-RRsNsHd+xU%Sd`DjpxpP|Z$IGW7gfS?-gBPkryt;XHs7^?O5St7{eaCcEP&N2bPDNB8 zb~7$DE-^7j^FlWO00Lr3L_t(IPi>RSYZFlv#%Gy%q{&R&i*3y$lbMW}*nkTmQj^*= zVq4saf}3J}w-waZVjqfHA60ySh%UrGK-7)kLIe@3qM)@ZxK>o~Px$=q&1fFxY=$}a z+;hJ3JLf8mR=92;dqIagsUvi?HHYV!qgr!J^{a&~OD3FS8oYTOg}c$VNxV4?sRx;st5GkFp!zjuy(&HE2mqlcaN&*TZ$uh(ZJ^Cab#z8 z*kdZ}eJa-MiXeAdNAY0{{clW^7#CivTd-(I`IS!=+-VKv7jbweHFWKc$aYdpw*B`i z6d%RV$%NvLH{FJl&r0?Is(Hm$4ywo#>V|tAs4iQmezuUFs7cRVG7#{raJzw1c8c@~ zXe(h3e@~$JAXckH1?xB&85Ei~N8bYD$wfNShg3MnH3@Q%mn+L=(*fDO3Hax@#*-}^{+b{@{4;@UsAlz!TEAiwZGslO z@?16<+-d;>g~Z;c+{Bq$0-+?h#x*9JZf>RUxhyiUVj(pis_1>fH}K9x-)j?t-x6FF z6}j_u9{EK|4&e$*?om;FZ^Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qRNAp5A0007}Nklf7GnaGb%ta@HiV<^cbRx9~A~Jf&E>@-!S)-0Vr&}7qHfX;}4vb^G>~&fQQ3tYW<30jxpHEk$g(#Foll!3X;CbpP4yY_0paE zB&WV9$#-&OlIeY3>7(LChdD?? zIU2|kqkjY8IV;BRvCtq-LM#-t4jjG1yd4-J^bZ~cpxvfFHA(;g002ovPDHLkV1h*a BXzBm} diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_round.png b/src/main/resources/assets/biomesoplenty/textures/blocks/foolleaves_round.png deleted file mode 100644 index f83143fc6920cc5929095f495e4da2c66f0b86bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 686 zcmV;f0#W^mP)N2bPDNB8 zb~7$DE-^7j^FlWO00JsWL_t(IPnDC+YZFlv#k0(NGifpt_hMT!CNq<95*u(KL^RQ) z5!>QU6xKDPTq`R0Cmhe48Ji}~LJtIz z`|i8%+~2)P#L1b^5PkhWZC@}@I3?lEYN$L&#TIdAWPI`3iwqj?4Oqtn+)EnV^KBOc zw{_T)5^E0$*e50O{6t5g`o{#eEo9(d)3Nns2E}t4tm6XKL4h@UlkhKSs6I)f@zy|% zdC|4DO7l9D{pLp#&Xh#`RR-=^iN1Zwpq+Irw(Hj_RG+5N%Yy2TI~Bvp<4e|Ix_QG^ zjtG=*>Dc(N2dzaDtxqQMZUs6I}IFVVsJtDUd8 zGmOnKpIm}K{-{9Vw1fgV#LLY^qvL{7f#BR($#%K`dL*uTRJMn|XVLm>!agIB8yCxo zo_dWj1+i~5i48aOz(H`h=}}KGBAf8kMHR~(-~>hmD)&;Q2q6P&p`nfERy>5P%M*W?E#s?Gi*9Lq}%$b(x-4jmZFBML(&xp3e0?j1@ErP9a zKZbv1;a%2XPjqqkBSn1VM;67%&FbA@ziJaLf>ylBT(%&&TO}qci(8&^6Q{!h%1P-a z*O+Yjxs@vB@R7kKGrq{s*DRMsz`xSwQJ$ye2(D6Ye|tLrq{Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qRNAp5A0009LNkl<2l|9(no~nH zO~*`qsOb}8cx~1lF~Lq_bpXBci`b!Nkf&UsR{r)xYoW0 zQM5np8Oa882O;!0ivL@m{_|}z>qp}Dp(SIlb3h1pUYGK#W%V4u{^9Nd(vu>zDFTc; z)G7B!ZhpM5XifV@RtahVhlsz7_HPl;t{=(z5XP%xLl_%2 zZF@#yc4f?=+VMiaXk(7jEhBHyuA6{O)EG5?N|6vt84oDa4vD0_NXD*mzpe%M@Cu;yrU!Ue^hnr#wJ`9`xLv^4!NGL|H?2^Y9#`RWuk12dwQ*p!T+ z(7ll97mYD~eaxX*wW(t+ZK-g&>MTZaCZO938n*0mO3?v0dLOKs`?ow`f`s7Wb9L3T15FM?N+7(2ouyDE>9ePpJYq)S!AC^ z^9y5a7%fD`{(hTCPfH?-W?oq+`%6Zqc@1_;Q~E zpigS7U6L3tacXt(#>)3nwN^2((3<$$WGT-{Wm z7S`E6^VcjNcU(gZsbqb_jC~*^=Gk9gbiTQQJv~3n=cxH*BdxW7gvXKdE98w8@Ux3} z@12=}MxRVbE87=_n#i83wimVdi*vBBQq{nLh1J+|?tlJwj#eiURWJYm002ovPDHLk FV1mk~slosN diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/foollog_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/foollog_side.png deleted file mode 100644 index 61a773638a429cebca4c4f05365091f8b7d873a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 833 zcmV-H1HSx;P)N2bPDNB8 zb~7$DE-^7j^FlWO00O;9L_t(IPZg5cPvTG*#rr-{MB38!_O=Bb4P!EK5=3OLwHr{x zZ8D1!CmIl;WnT-j2;vel^Dv9a{Izp^xexc|+;h(F`>_1>QZ-7HqOME-QhwK2m*L~5 zt$*L&znpI^&NiPiaHf-eh3adtA<n)|dBC$0j^xgAF-LfSh2<80&CXW!!E z=Hk?QpMl*2rYTZZ6n_wAO(u|R2lkT2p$L7AyEkA*a^LK^tOz+!!92_NG|-lrfeyR6&`GT~ zWmt+3s3F$YJhs9<8*r+FLco#tFCmDFQ_uX6>&l=m(kO6U;aVzJ73nf^m>m12M;m{? z`u=?JA$;{XKGx~SEdOxGAx|?*6eENwQdOC)9e}3HVv|$fYKge5vct5e zB?E-pic<|4U}l^^H19L~b5?b~tkFnNj8cV&+l&&J z8C)USqs>@%f^tCApk3O$gBwul_4iw`Ro+i(5@bVb$)>b}v+00000 LNkvXXu0mjfp~ZZ9 diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/frankershroom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/frankershroom.png new file mode 100644 index 0000000000000000000000000000000000000000..c57e7ed32367664e55febe727b01290e9cf912d0 GIT binary patch literal 721 zcmV;?0xtcDP)N2bPDNB8 zb~7$DE-^7j^FlWO00K=(L_t(IPo&FOM;ZF6qT ziE~b!X_FFCGcBW%A~oqn5l9c1NLnb>t3oVLUqq5xBXg)w6#WgKexbe)RwNxb@a6Em zhkMVxBH+K6QQQwRiu++kaX-ummqCWJP|TH{J`y!ys_aIJvJd>>_YUfvDq6k8G*oCg z?a^{E=4CUzNqX%I?UluxP#z{|l+x@o(O6x&*DPdH5HC~ER9-;HoXc6af_vR{d|OZP zHT{|Uy>a@2IwFQ6R2y?ixOD_9%59U7C7&9rl9)qD#3Ux5&SE&}=V5P@jSq`#rIvUx zoMfccMWS4ZUoRo)70etOg4RMrHC8!(!%?Ai15t~V(!4|1^g8N;5!M#x*jRnX^v!m9 zTbd}-EAZ(g#08_ULq~0?3Q={59FJB?tXxNPMG*mAHZ49oolT8G@iMCmZ@6{JMJ(XM zAeW+*93(E}6tb!~`MZO#T}jX^r_E#JT*xdKWN|rS;^pWFKfnLr{lYwbwNB2sgfXpo zG#=N`QmLcPp~f%Ni2}wPYHdoIU3wbqGOC1-20NmxeM+&lzD{asnfcjSdg@%XIrD`K z#6+z!!qy@xHInTh!!{WWPK_WIa6aKKwwy zgpIjPdsk^xig#Wj(d_G2!VRRU^0={>O0byC%uG&jwg1B3k7*Y(&!$*>JIAH&F0^VD zH32VE;}8C=co&n8A2D)$fX-waw+C-9G|->HKqUGFN2bPDNB8 zb~7$DE-^7j^FlWO00Kx!L_t(IPkmEOOKMRR?FTqi0%_tT93=>aMWQ%z5P~8&6meor zOEi*5ld?3;5)l1y)yAVK5k=*XyykxCo_E$tP$wo5l0rpRP6*x1-WGMU8N+ZzkCTCK2HEdN{~N2pb*kPDll)oS7T z`Wp3m9pB&I`1<<7FFsp yH#dI|{)=!pjCefGvRzzUu>R>qa=$su&HVv}_Rv;BHWcUp0000Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02*{fSaefwW^{L9 za%BKeVQFr3E>1;MAa*k@H7+qRNAp5A0007sNkl*V8L9y44tdj?>$^Fy0ooEAsf}@>KxG|!k)!lOFY_Z=@F!IjLb^JbLJ_La z`Ej$_OPp;1nzas`);Uw6aV1+E=SBKsP)N|of{2j?qLE9950{gml#-^F(3$xcP@{05 zDbbxQ)n4MmB&0rX<#9J5U$rOM&=moLquh7Q&Uv zOqMPd^J?6}$GLIl`x`K4>Cs9Lh$rE2Sip9mGRBv5RUokup(I5L+-)$h(r0Aj;Sk?m zFY{@poy9IAnNc#7!9heF2-*%jhRcVk2SK?af~MxBjY6kWon1rf!>;8uGeStxV?zA;TGPEwDNYejpr9k zto4_2N5p?tcLuDn6lXHkTFSy;4=WSbnCq-(;zTx+wK?00y8