-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog.txt
1513 lines (1165 loc) · 71.5 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
NOTE: This change log may still be missing things! I will work to make sure it properly chronicles all sorts of changes from the mod's inception up to the latest release.
==[ MINECRAFT 1.19.2]==
=======================
## [5.0.0] - 2023-03-17
A HUGE update for MoreCraft with lots of compats and plenty of overhauls.
🌟Added:
* Added new blocks: Quartz Brick Stairs, Slabs, and Walls.
* Added new item: Elytra Blueprint.
* Crafted by reverse-engineering Elytra. Check the recipe book, you'll also receive an advancement for picking up elytra. The original Elytra will be destroyed.
* Elytra Blueprint will allow you to craft Elytra. The blueprint won't be consumed when crafting Elytras.
* Added new item: Ender Dragon Wings.
* Crafted by surrounding Elytra with Ender Dragon Scales.
* Used for the creation of Winged Enderdragon Scale Chestplate.
* Added Winged Enderdragon Scale Chestplate.
* There are plenty of cool animations. Wings spread out when you glide like elytra. Wings also flap when you fly. When not flying, the wings fold neatly.
* Made by using Smithing Table. Enderdragon Scale Chestplate + Enderdragon Wings.
* Guardian Stews are now implemented and as such, can be crafted and shows up in creative inventory.
* Added integrations for Abnormals Blueprint. It remains an optional dependency.
* When Blueprint is installed, Netherwood Forest biome will generate in the Nether.
* Added support for Farmer's Delight.
* Added Netherwood Cabinets.
* Added 6 different knives: Copper, Ruby, Emerald, Bone, Obsidian, and Blaze.
* Added Chevon Chops, Minced Spider, Guardian Cuts, and Dragon Chops, both raw and cooked.
* You can use the cooking pot to create Goat Stews, Spider Stews, Guardian Stews, and Dragon Stews.
* Added Dragon Casserole, a new food that is difficult to make. Made using Cooking Pots. The recipe is for you to find out!
* MoreCraft version of cooked eggs, cake slices, and stews made from vanilla meat are hidden and uncraftable if Farmers Delight is installed.
* Added the advancement goal Dinner of the Gods, achieved by making Dragon Casserole.
* Added proper support for Woodworks.
* Added some of integrations from Quark to Abnormals Woodworks. Affected blocks: Netherwood Bookshelves, Netherwood Chests (and trapped), Netherwood Ladders.
* Added Netherwood Boards, can be crafted in the same way as other boards.
* Added Netherwood Leaf Piles. Basically just the same as leaf carpet from Quark.
* Integrated Sawmill recipes for Netherwood.
* If the mod (alongside Blueprint) is installed, Netherwood beehive will use Blueprint.
* Quark integration will remain.
* Added support for Twilight Forest.
* When mod is installed, Netherwood Hollow Logs and Banisters will be added.
* Added tags for Forge.
* forge:cooked_eggs: Fried Eggs
* forge:raw_meats: Raw Chevon, Raw Frog Legs, Raw Spider, Raw Squid, Raw Guardian Meat, and Raw Dragon Meat.
* Added tags for Diet mod.
* diet:fruits: Apple Pie, Sweet Berry Pie, Nether Apple, and Nether Apple Pie
* diet:vegetables: Nethershroom Stew
* diet:proteins: Cooked Flesh, Cooked Egg, all modded meats and meat-based stews
* diet:sugars: Cake Slice, Apple Pie, Nether Apple Pie, and Sweet Berry Pie
* Added ender_mobs tag which will be used for checking Enderbane.
* Vanilla entities: Enderman, Endermite, Shulker, and Ender Dragon.
* Endergetic Expansion entities: Booflos (all stages), Eetles (all variants), Puffbug, and Purpoids.
* Alex's Mobs entities: Cosmaw, Cosmic Cod, Enderiophage, Mimicube, Spectre, and Farseer.
🔧Changed:
* Kilns are now hidden and uncraftable when Clayworks mod is installed.
* Enderbane has been changed to use entity type tags instead of a hardcoded check against mob types.
* Revamped Netherwood Leaves textures.
* Now only 10% of Netherwood leaf blocks are animated.
* Netherwood Leaves now have smooth transition for Herobrine-styled eyes appearing.
* Updated Netherwood Chest textures.
* Updated door item textures.
* Updated Bone Lord chestplate item texture.
* Updated Warped Boat item texture.
* Updated Netherwood Boat entity texture for consistency.
* Netherwood Beehive now works if Woodworks is installed.
* Added final modifier to Legendary rarity enum.
* Flesh blocks are now broken faster using hoes.
* Changed CactusBlockMixin to use inject instead of overwrite for improved mod compatibility.
* Now properly added cactus_immune tag.
* Cactus, ores (and the products), shulker boxes, and Netherite items are immune to cactus.
* Cleaned up en_gb and en_ca language files.
🐞Fixed:
* Netherwood Leaves should now correctly drop themselves instead of oak leaves when harvested with silk touch.
* Fixed Netherwood Trapped Chests, both functionality and rendering.
=======================
## [4.7.6] - 2023-01-23
🌟Added:
* Added new enchantment: Reinforcement. Increases maximum durability by 10% per level.
* Added tooltip descriptions for modded enchantments for compatibility with Enchantment Descriptions.
🔧Changed:
* Bumped up Forge version requirement to 43.2.0+ to encourage using a stable environment.
🐞Fixed:
* Enderbane enchantment now properly emits enchanted hit particles on dealing extra damage.
* Fixed diamond tools requirement tag.
* Fixed mixins, thus spider silk armour should now be able to reduce slowdown from webs again.
❌Removed:
* Removed many references to tall version of MoreCraft doors as everything was moved over to Dramatic Doors.
=======================
## [4.7.5] - 2022-12-15
🌟Added:
* Dragon meat is finally obtainable and can be cooked.
🔧Changed:
* New textures for spider meat, guardian meat, and dragon meat!
❌Removed:
* Removed tall doors, they have been moved to Dramatic Doors mod.
==[ MINECRAFT 1.19 ]==
=======================
## [4.7.4] - 2022-07-14
🌟Added:
* Added a config that allows you to disable cactus destroying dropped items. This fixes MC-3532.
🔧Changed:
* Updated to Forge 41.0.94 and is now the minimum version.
## [4.7.3] - 2022-06-21
This is primarily a bug fix update but it also brings the Enderbane enchantment and polished the wool armour.
🌟Added:
+ Enderbane enchantment.
* Increases damage against Endermen, Endermites, Shulkers, and Enderdragon. 1.25 damage per level.
* Can be applied to swords (normally) and axes (via book). Maximum enchantment level is 5.
* Fun fact: Netherite axes with Enderbane V can kill Enderman in two hits!
🔧Changed:
* You can now craft wool armour with any wool. However, currently, the wool armour will be white regardless of wool colours used so dye the armour.
* Wool armour can now be used on cauldrons to remove the dye.
* Brightened the wool armour outline.
* Kilns changed, hardness and resistance should now match the vanilla furnaces. You also now need a pickaxe to pick up kilns.
* Warden is added to list of mobs immune to fear from bone armour.
🐞Fixed:
* Fixed damage reduction logic for Magic Protection. It unnecessarily applied to every damage type and was overpowered. Now it only reduces damage from magic damage type, and still applies to Warden sonic boom.
* Fixed dyed wool armour on player model, it should be properly coloured now.
=======================
## [4.7.2] - 2022-06-19
🌟Added:
+ Warden Head.
* Dropped from Wardens occasionally. Can also be found in Decorations tab.
* It's spooky. Try powering it with redstone!
* Currently cannot be worn.
+ Magic Protection
* Reduces damage from Potion of Instant Damage, Enderdragon breath, and Warden's Sonic Boom.
* Can be applied to any pieces of armour. Maximum enchantment level is 4.
+ Warden Slayer
* Kill the Warden to get the advancement. This is purely for bragging rights.
+ Added a recipe for processing 4x Cooked Flesh into 1x Leather.
🔧Changed:
* Now based on Forge 41.0.38. Updated requirements.
* Changed the recipes for Nether Brick Doors and Fence Gates. Likewise, the corresponding advancements are tweaked.
🐞Fixed:
* Fixed recipe advancement for cobwebs.
* Fixed compatibility for later Forge versions by making sure config is loaded first.
* Fixed Kiln blocks. Hardness and sound values have been corrected, should also now light up and emit particles when active.
❌Removed:
* Removed the leftover event code for adding Witch being able to open doors, it was wonky. Use Dramatic Doors mod for that functionality, it works better.
=======================
## [4.7.1] - 2022-06-14
This update ports the fixes from mod version 4.6.3 for 1.18.2, into 1.19.
🔧Changed:
* Added block and item tags to Deepslate Buttons and Pressure Plates.
🐞Fixed:
* Fixed an issue where the server wouldn't run with the mod installed.
* Deepslate Buttons and Pressure Plates should now be correctly tagged as pickaxe-mineable.
* Fixed advancement and recipe related to converting between Copper Nuggets and Copper Ingots.
=======================
## [4.7.0_1] - 2022-06-13
🐞Fixed:
* Corrected a Deepslate Pressure Plate typo in pickaxe tag. Now pickaxes can mine stones again.
=======================
## [4.7.0] - 2022-06-12
This mod is the first release for Minecraft 1.19! Already, I've started integrating some of the 1.19 features.
🌟Added:
+ Frog Legs, raw and cooked.
* Dropped by killing a Frog.
* Can be eaten. Raw restores 2 hunger points, cooked restores 5 hunger points. Cooked has high saturation.
+ Nether Boats with Chests.
* Can be crafted just like any vanilla boats, only with boats made from Nether wood materials.
* Doesn't burn in lava.
+ Wool Armour.
* Currently only can be crafted with white wool.
* Provides you warmth just like leather armour.
* In the future, may be dyeable.
+ Crafting Recipe for Reinforced Deepslate.
* Made with Cobbled Deepslate, Bones, Sculk Catalyst, and Obsidian.
🔧Changed:
* Made the Reinforced Deepslate harvestable with Diamond Pickaxe or better.
* Moved the mod world features over to use the new system.
* Updated the Netherwood Sapling texture.
🐞Fixed:
* Deepslate Buttons and Pressure Plates are now properly added to pickaxe mineable tag.
❌Removed:
* Netherwood Crafting Tables & Minecarts. Moved to Variant Crafting Table starting with version 1.6.1+ of VCT mod.
==[ MINECRAFT 1.18.2]==
=======================
## [4.6.3] - 2022-06-14
This update aims to address several issues with the mod.
🔧Changed:
* Added block and item tags to Deepslate Buttons and Pressure Plates.
🐞Fixed:
* Fixed an issue where the server wouldn't run with the mod installed.
* Deepslate Buttons and Pressure Plates should now be correctly tagged as pickaxe-mineable.
* Fixed advancement and recipe related to converting between Copper Nuggets and Copper Ingots.
* Re-added missing Netherwood Crafting Table assets. I think.
=======================
## [4.6.2] - 2022-06-07
🌟Added:
+ Glow Ink Torch
* Can be crafted with Stick and Glow Ink Sac.
* Can be placed underwater, is waterloggable!
+ Deepslate Buttons & Pressure Plates
* Can be crafted with Polished Deepslate. They work the same as Stone & Blackstone counterparts.
🔧Changed:
* Updated the texture for Glowstone Torch.
* Converted the Netherwood Sapling planted blocks to a block tag.
* More tweaks to Netherwood Tree generation code. Netherwood Trees should be MUCH rarer in Nether Wastes and Soul Sand Valley now.
🐞Fixed:
* Fixed /placefeature for Netherwood trees, it should work now.
* Fixed missing advancement for Ruby from Ruby Block.
* Fixed missing recipe for Tall Soul Glass Door.
* Fixed Minecart with Netherwood Crafting Table advancement unlocking prematurely.
=======================
## [4.6.1] - 2022-04-12
🌟Added:
+ Copper Nuggets. Can be obtained by smelting down copper equipment or from 9 copper ingots.
* You can craft 9 nuggets into a full copper ingot just like as with metal ingots.
+ Patinas. Scrape oxidization off any forms of copper blocks (including stairs and slabs) with axe for a chance to get Patina. Chance is affected by Fortune.
* Patinas can be currently crafted into cyan dyes.
* Patinas can be used on copper blocks to instantly advance oxidization, using up 1 patina.
+ Soul Glass Doors & Trapdoors! Crafted with Soul Glass.
* The tall version of Soul Glass Door is also available if Dramatic Doors mod is installed.
🔧Changed:
* Soul Glass can now be used to craft into Glass Bottles.
🐞Fixed:
* Kiln recipe book is now working! Yay!
* You can now properly smelt Cobbled Deepslate into Deepslate in kilns.
* Fixed an issue where you couldn't smelt Soul Sand in regular furnaces.
* Fixed partial transparency for Soul Glass blocks.
❌Removed:
* Removed ModBrewingRecipe class as the mod brewing recipe registry now uses vanilla methods.
=======================
## [4.6.0] - 2022-03-04
This update aims primarily to port the mod to Minecraft 1.18.2.
🌟Added:
+ You can smelt basalts into smooth basalts in kilns.
🔧Changed:
* Netherwood Forest biome is now tagged as nether and also eligible for Bastion Remnants and Nether Fortresses.
❌Removed:
- Removed ModUpdateTileEntityPacket as it's no longer used.
==[ MINECRAFT 1.18.1]==
=======================
## [4.5.5] - 2022-02-23
🌟Added:
* Re-implemented Hardcore Recipes config. Currently, this only affects Totem of Undying.
🔧Changed:
* Updated Ruby Ore textures.
* Updated Spider Silk armour textures.
* Spider silk armour now has a new advantage: you can move through webs faster.
* Blaze and Spider Silk armour now count as providing warmth from powder snow.
* Cleaned up some code pertaining to Quark conditions.
* Some improvements to mod compatiblity. Calcite, Tuff, and Dripstone slabs, stairs, and walls will be inaccessible while Caverns & Chasms mod is installed.
🐞Fixed:
* Some attempt to fix potential server due to Enderdragon Scale Armour.
* Fixed Bedrock Brick double slab issues.
* Fixed a bug where Netherwood Chest (and its trapped variant) wouldn't drop itself when broken.
* Fixed some recipe notifications. In particular, Netherbrick Fence Gate, Bone Ladder, Enchanted Golden Apple, and Cake Slice.
* Made some tweaks to effectively silence missing textures for chests and mob effects in console output.
=======================
## [4.5.4] - 2022-01-16
Some fixes. Removed modded Crafting Tables except for Netherwood.
🐞Fixed:
* Fixed broken recipe toast for Minecart with Netherwood Crafting Table.
❌Removed:
- Removed all modded Crafting Tables except for Netherwood. The modded crafting tables have been moved to Variant Crafting Tables.
- Removed crafting table compat for Environmental Mod due to the removal of most crafting tables from this mod.
=======================
## [4.5.3] - 2022-01-08
🌟Added:
+ Bedrock Brick Stairs, Slabs, Walls. Can be made from crafting with Bedrock Bricks or from Stonecutter.
🔧Changed:
* Cleaned up code related to Netherwood Signs.
* Improved compatibility with Variant Crafting Tables, ensuring the crafting tables don't overlap.
🐞Fixed:
> Fixed an issue where saddles couldn't be crafted.
❌Removed:
- Removed vertical slabs for Calcite, Tuff, and Dripstone due to Quark having those already.
=======================
## [4.5.2] - 2021-12-22
🔧Changed:
* Improved support for Dramatic Doors. Tall doors added by MoreCraft are now in Dramatic Doors tab.
=======================
## [4.5.1] - 2021-12-11
First mod release made specially for Minecraft 1.18.1!
🔧Changed:
* Dropped support for Minecraft 1.18.0, please update to 1.18.1 as the previous version had security issues.
=======================
## [4.5.0] - 2021-12-04
For some reason, loading 1.17.1 worlds into 1.18 may cause loss of some block entity data. I don't know what happened.
To be safe, please remove all block entities like Netherwood Signs and Netherwood Chests, store them in vanilla chests before initiating the upgrade. After the upgrade, you can safely put the block entities back.
🔧Changed:
* The mod now has a spazzy new logo.
* Updated ruby ore generation code to work with the new ore generation code, and it can also generate below 0 too.
* Decreased Netherwood Tree generation rate from 6% to 4% in Soul Sand Valley to make it feel less forest-like.
* Tweaked Nether boats to be slightly raised in lava, as a workaround for hiding lava in boat. Plus lava is thicker.
🐞Fixed:
* Some fixes to mod description in the mods list, no more odd symbol at end of line.
==[ MINECRAFT 1.17.1]==
=======================
## [4.4.3] - 2022-01-16
Some fixes. Removed modded Crafting Tables except for Netherwood.
🐞Fixed:
* Fixed broken recipe toast for Minecart with Netherwood Crafting Table.
❌Removed:
- Removed all modded Crafting Tables except for Netherwood. The modded crafting tables have been moved to Variant Crafting Tables.
- Removed crafting table compat for Environmental Mod due to the removal of most crafting tables from this mod.
=======================
## [4.4.2] - 2022-01-07
This update ports the improvements from mod version 4.3.6 as well as fixing some bugs.
🌟Added:
+ Bedrock Brick Stairs, Slabs, Walls. Can be made from crafting with Bedrock Bricks or from Stonecutter. Not included is Vertical Slab due to Quark skipping 1.17.1
🔧Changed:
* Cleaned up code related to Netherwood Signs.
* Improved compatibility with Variant Crafting Tables, ensuring the crafting tables don't overlap.
🐞Fixed:
> Fixed an issue where saddles couldn't be crafted.
> Some fixes to a few recipe toast notifications.
=======================
## [4.4.1] - 2021-12-22
This update ports the improvements from mod version 4.3.5.
🔧Changed:
* Improved support for Dramatic Doors addon.
* Tall doors are now moved to Dramatic Doors creative tab. (Requires Dramatic Doors mod version 1.4.1+)
* Added Double Doors support.
* Added tall door tags for Dramatic Doors.
* Updated mod logo file.
* Tweaks to mods.toml as it appears that Quark and Buzzier Bees will be skipping 1.17.1.
🐞Fixed:
> Fixed an issue where Tall Netherwood Doors couldn't be crafted.
=======================
## [4.4.0] - 2021-10-23
This update focuses on polishing the mod and moves it out of beta into release. It has plenty of fixes too!
🌟Added:
+ Added French translation (both forms of French) for the following content:
* Chevons & Goat stews
* Deepslate Ruby Ore
* Copper equipment
* Bone, Glass, and Nether Brick Trapdoors
* Potions of Resistance and Glowing
+ The following changes and fixes are forward-ported from mod release 4.3.3:
* Added Charm support, where barrels, bookcases, and crates get the Netherwood variant, and supports portable crafting table. (Futureproofed)
* Added Dramatic Doors support, where each of the five doors now have the tall door variant when the mod is installed. (Futureproofed)
* Added Bone, Glass, and Nether Brick Trapdoors.
* Updated Bone Ladder and lower Nether Brick Door textures.
* Changed Netherwood Ladder recipe to yield 4 ladders for consistency with Quark ladders.
* Fixed an issue where Netherwood Trapdoors wouldn't drop anything when broken.
🔧Changed:
* Slime boots now significantly reduce fall damage and make you bounce a bit, stacking with Feather Falling. Boots, however, will take durability damage.
🐞Fixed:
> Corrected notification toasts popping up for Oak (vanilla) Crafting Table and Ruby item.
> Fixed a bug where picking up rotten flesh would cause fried egg recipe notification toast to pop up.
> Fixed an issue where dismounting the mod-added boats would crash the server.
> Fixed a bug where finishing editing Netherwood signs on modded servers would crash the client.
> Corrected French translation for variant Crafting tables on fr_fr.
❌Removed:
- Removed a few unnecessary code in NetworkPacketHandler.
=======================
## [4.4b1] - 2021-09-24
Well well well, what do we have here? The first mod build for Minecraft 1.17.1, that's what it is! This is a beta release as there may still be bugs to be ironed out as well as further tweaks.
The mod now integrates some of the new additions of 1.17.1!
🌟Added:
+ New equipment tier: Copper! Intended to fill the gaps between Stone and Iron. Craft with Copper Ingots.
* You have the usual array of copper tools, sword, and armour. Alongside horse armour!
+ New blocks: Stairs, Slabs, and Walls for Tuff, Calcite, Dripstone, and Smooth Basalt!
* The new stairs, slabs, and walls can be made as usual like any other type.
* You also can make using Stonecutter. For the first time, the mod now integrates the Stonecutter.
* Quark bonus: Vertical slabs are enabled if Quark is installed.
* New ore block: Deepslate Ruby Ore
* Just like any other Deepslate ore blocks, it can generate where Deepslate exists.
* New item: Chevons! Dropped by adult goats and can be cooked and made into stew.
* If goats die while on fire, they will drop cooked chevons!
* Added set bonuses for some armour sets!
* Ruby armour gives you a chance to completely negate damage through luck. Chance is 2.5% per piece.
* Obsidian armour reduces fire damage taken by 10% per piece, stacking with Fire Protection.
* Spider Silk increases fire damage taken by 10% per piece. Currently doesn't let you move through webs faster.
* Bone, Bone Lord, and Wither Bone armour increase Fear Value of player. 1 point of Fear = 5% chance for hostile mobs to run from you. Bone Lord & Wither Bone = 2 points of fear per piece.
* The chance is reduced as mobs have increased max health.
+ The fear mechanics use 2 status effects: scared and unafraid.
* While the mob is scared, it will run away from you.
* Once the scared effect runs out, the mob is immune to fear for 1 minute.
* Bosses and minibosses can't be scared of you. Fear does not affect players.
* Those two effects work like potion effects. However, creepers can't transfer those effects to entities.
+ Re-implemented salvage recipes! This also can be turned on or off. More recipes may potentially be added over time!
* You can now melt down the following in furnace or blast furnace: Iron & Netherite doors, Iron & Netherite trapdoors, Iron bars, Chains, Buckets, Minecarts, Hoppers, Weighted pressure plates (both variants), and Bells into ingots or nuggets.
* You can now put the items in crafting grid to dismantle/revert:
* Wooden fences: 1x -> 1 plank
* Wooden fence gates: 1x -> 2 planks
* Wooden doors: 1x -> 2 planks
* Wooden trapdoors: 1x -> 2 planks
* Wooden boats 1x -> 4 planks
* Wooden pressure plates: 1x -> 1 plank
* Wooden buttons: 1x -> 1 plank
* Ladders: 1x -> 2 sticks
* Any arrows: 4x -> 1 stick
* Bows: 1x -> 1 stick
+ Added a new advancement: Cover Me in Scales. Make a piece of Enderdragon scale armour.
+ Added a new effect where Emerald Pickaxes have a small chance to turn a random stone or deepslate block into emerald ore. The effect cannot trigger if the pickaxe has Silk Touch, as to avoid any possible exploits. The durability has been nerfed to 364.
+ Added Cracked Deepslate Bricks and Cracked Deepslate Tiles to Kiln recipes.
🔧Changed:
* Built on Forge 37.0.44 so you'll need this version at minimum.
* Glow Ink Sac can now be used on Netherwood Signs to make text glow! Use Ink Sac to reverse.
* Incorporated the new mineable tags.
* Added Ruby item texture due to Minecraft having removed the texture from 1.17. Also, new Ruby item texture.
* Adjusted Wither Bone and Wither Bone Meal item textures.
* Tweaked Enderdragon Armour model a bit. Loincloth is now split and attached to legs so the halves move with legs. The textures also have been tweaked.
* Decreased the frequency of Netherwood trees in Soul Sand Valley.
🐞Fixed:
> Fixed the upside-down corner stairs graphics.
==[ MINECRAFT 1.16.5]==
=======================
## [4.3.7] - 2022-01-16
Added slime boots effects from later versions, and removed modded Crafting Tables except for Netherwood.
🌟Added:
+ Added the effects of Slime Boots which will absorb a lot of fall damage at the cost of durability.
🐞Fixed:
* Fixed broken recipe toast for Minecart with Netherwood Crafting Table.
❌Removed:
- Removed all modded Crafting Tables except for Netherwood. The modded crafting tables have been moved to Variant Crafting Tables.
- Removed crafting table compat for Environmental Mod due to the removal of most crafting tables from this mod.
=======================
## [4.3.6] - 2022-01-07
Gave some love to Bedrock Bricks!
🌟Added:
+ Bedrock Brick Stairs, Slabs, Walls. Can be made from crafting with Bedrock Bricks or from Stonecutter.
+ (Quark) Bedrock Vertical Slab
🔧Changed:
* Cleaned up code related to Netherwood Signs.
* Improved compatibility with Variant Crafting Tables, ensuring the crafting tables don't overlap.
=======================
## [4.3.5] - 2021-12-22
An improvement to support for Dramatic Doors and fixes a few bugs.
🔧Changed:
* Improved support for Dramatic Doors addon.
* Tall doors are now moved to Dramatic Doors creative tab. (Requires Dramatic Doors mod version 1.4.1+)
* Added Double Doors support.
* Added tall door tags for Dramatic Doors.
🐞Fixed:
> Fixed fried egg recipe toast, it should now properly show up when picking up eggs, and it will no longer incorrectly unlock cooked flesh recipes.
> Fixed an issue where Tall Netherwood Doors couldn't be crafted.
=======================
## [4.3.4] - 2021-10-22
This is a small update primarily to fix some bugs. Especially the crashing bugs involving the boats.
🐞Fixed:
> Corrected sound registration code.
> Corrected tall bone door item registration to match the other tall doors.
> Fixed a bug with Nether boats crashing the servers upon riding or dismounting.
=======================
## [4.3.3] - 2021-10-19
This is a large update for the mod for 1.16.5 and here's what's new! This update also adds integration for the following mods: Charm and Dramatic Doors!
🌟Added:
+ Charm support: While the mod is installed:
* Added Netherwood Crates, Bookcases, and Barrels, which work in identical manner to the other wood variants.
* Added Charm tags for portable crafting when in possession of any crafting tables added by the mod.
* MoreCraft version of Ender Pearl Block and Gunpowder Block are hidden and uncraftable to also avoid duplicates.
* Netherwood Ladders can be crafted even without Quark installed.
+ Dramatic Doors support: While the mod is installed:
* Added tall doors! Those doors are 3 blocks tall and can be crafted in the same way as any other tall doors. All five door types added by the mod are included.
+ While Quark mod is installed, MoreCraft version of Nether Brick Fence Gate is hidden and uncraftable to avoid duplicates.
* Updated Netherwood Ladder recipe to yield 4 ladders to be consistent with Quark recipe.
+ Added the new trapdoors: Nether Brick, Glass, and Bone! The recipe book will give you the hint on how to make them, the vanilla recipe toast from picking up the relevant materials will let you know.
+ The following additions are backported from mod release 4.4b1:
* Added 'Cover Me in Scales' achievement for wearing Enderdragon Armour. (Backported from 4.4b1)
* Re-implemented salvage recipes. You can now melt down certain items in furnace and blast furnace, and dismantle some wooden items back into base material. (Backported from 4.4b1)
* Added the mob fear mechanics, applies when you wear bone armour.
🔧Changed:
* Updated Bone Ladder texture.
* Touched up Nether Brick Door lower texture.
* The following changes are backported from mod release 4.4b1.
* Obsidian armour now reduces fire damage taken. Spider silk, however, increases fire damage taken.
* Added ruby armour having a chance to nullify damage through luck.
* Added a small chance of a special effect when you mine ores with Emerald Pickaxe in the Overworld.
* Updated the Wither Bone and Wither Bonemeal item icons.
🐞Fixed:
> Adjusted the block sounds to be more fitting for the mod-added doors.
> Fixed a bug where Netherwood Trapdoors wouldn't drop anything when broken.
> Fixed an issue where kiln recipe toast would incorrectly show Crafting Table instead of Kiln.
=======================
## [4.3.2] - 2021-04-27
While this release mainly focuses on fixing incompatibility issues, there are plenty of improvements as well as added compatibility for Sawmill from Environmental mod.
🌟Added:
* Added compatibility for Sawmill from McAbnormals Environmental mod.
* Netherwood can now be used in sawmill recipes.
* Variant Crafting Table recipes override the vanilla crafting table recipes.
* Even more associated tags added for more blocks/items.
* Netherwood Fence Gate and Nether Brick Fence Gate added to fence_gates.json in block tags folder.
* Netherwood signs added to standing_signs and wall_signs in block tags folder.
* All mod-added doors added to doors.json in item tags folder.
* Crimson, Warped, and Netherwood boats added to boats.json in item tags folder.
🔧Changed:
* Updated Nether Brick Door and Bone Door item texture.
* Cakes will now drop themselves if broken without any bites taken out.
* Ruby ores generation size and frequency can now be configured. Set frequency to 0 to turn off.
* Fixed an issue where MoreCraft wouldn't run with Quark on the latest build of Forge due to Quark version starting with letter r. Apparently that happened on later versions of Forge.
=======================
## [4.3.1] - 2021-04-05
Just a bug fix release to fix the issues found in the previous version.
🔧Changed:
* All variants of Crafting Tables can be used as fuel, with the exception of Crimson, Warped, and Netherwood.
* Kiln can now process Sandstone and Red Sandstone into their smooth variants.
🐞Fixed:
> Fixed Netherwood sapling being treated as replaceable plant, now it no longer can get accidentally replaced.
> Fixed Netherwood sapling disappearing when it fails to grow on Nether soils. (Soul Sand/Soil, Crimson & Warped Nylium)
=======================
## [4.3.0] - 2021-04-03
Important Information:
* Built on Forge 36.1.0 now.
* The version of this mod can no longer run on Minecraft 1.16.4 and earlier. Please update to 1.16.5.
🌟Added:
* Quark enhancement is here! While installed, the additional blocks are available for Netherwood: Leaf Carpets, Hedges, Ladders, Vertical Slabs, Vertical Planks, and Posts.
* Added two new advancements: The Forgotten Red Ore and Cover Me in Bones!
🔧Changed:
* Made each crafting table look different from vanilla (oak) crafting table.
* Updated Nether Brick Door textures.
* Updated Netherwood Trapdoor textures.
==[ MINECRAFT 1.16.4]==
=======================
## [4.2.3] - 2020-12-28
Feast your eyes on those coloured crafting tables! There is also a new utility minecart: Minecart with Crafting Table.
🌟Added:
+ Added Crafting Table for each vanilla wood type! Crafted with four corresponding planks.
+ Also added Minecart with Crafting Table. Craft on the go! I recommend playing with Quark since you can attach minecarts with chains.
+ Added French translations for Kiln, Crafting Table variants, Minecart with Crafting Table, additional Stews, Guardian Scales, and Glowing & Resistance potions.
🔧Changed:
* Netherwood Saplings can be used in composters now.
* Changed ruby tool recipes to use tags, thus allowing such recipes to be made with rubies from other mods.
=======================
## [4.2.2] - 2020-11-23
Now that is quite a big update full of new additions!
🌟Added:
+ New block: Kiln! This furnace upgrade allows you to smelt clay (ball & block), sand, cobblestone, stone, netherrack, coloured terracotta faster! You also can turn certain brick blocks into cracked variants. Note that not all the remaining smelting recipes use the kiln, this is to ensure the furnace isn't obsolete.
+ New potions: Potion of Resistance and Potion of Glowing!
+ New item: Guardian Scales! Use them to brew Potions of Resistance!
+ New item: Stews! Feast your eyes on seven different stews! Pork, Beef, Chicken, Mutton, Fish, Spider, and Nether Fungus!
+ You can now use Prismarine Crystals to create Potions of Glowing!
🔧Changed:
* Updated Bone & Wither Bone leggings texture to make it easier to distinguish from boots.
* Tweaked Netherwood Planks and Netherwood Crafting Table textures.
* Updated Netherwood Door block and item textures.
* Updated Netherwood Boat entity texture.
* Updated Cake Slice item texture.
* Breaking cakes now cause cake slices to be dropped equal to 7 minus the amount of bites.
* Updated Cake Slice recipe to yield 7 slices due to cakes having 7 bites.
* Decreased hunger refill from fried spiders from 7 to 6 to make spider stews a bit more useful.
* The Striders went on a strike, complaining about how they were made irrelevant with the boats. Today, their prayers have been answered as the boats have underwent some modifications. Nerfed the movement speed of Nether boats in lava so they now move slower than the Striders while not being too slow! Now the Striders have an obvious advantage over the boats. Those boats still have the same movement speed as vanilla boats in water.
💭Known Issues:
- The recipe book includes furnace. Unfortunately, it's not easy to fix as the recipe book enums are hardcoded.
=======================
## [4.2.1] - 2020-11-12
This update aims to bring consistency and also fixes some issues.
🌟Added:
+ Coded Netherwood Beehive. Currently not obtainable as it doesn't really work as bees wouldn't attempt to enter one. Perhaps I will find a way to get it working. Until then, it's not craftable nor is it in creative inventory.
+ New block: Netherwood Bookshelf! Craft in the same way you would normally craft bookshelves but with Netherwood planks. Works just like the vanilla bookshelves.
+ Added translations for the new blocks for French and German.
🔧Changed:
* Now built on Forge 35.0.7+.
* Moved pl_pl.json to its correct location. Note that it contains no translations yet, and it's empty.
* Tweaked some German texts for Netherwood-related objects.
* Piglins will now react to Netherwood Chests, and trapped variants, in same manner as vanilla chests.
* Hoes now break Netherwood Leaves faster.
🐞Fixed:
> Fixed Netherwood Apple Pie tooltip name in Canadian English.
> Fixed Netherwood sign text colour not changing when dye is applied. This elusive, pesky bug was around and I had difficulty in fixing it. Until now.
=======================
## [4.2.0] - 2020-11-04
Had to add the 0 to version number ;)
Anyways, this is the mod release for 1.16.4. It involves some tweaks to Netherwood trees.
🌟Added:
+ Coded Netherwood Forest biome. It's currently not generated but you can test that out in buffet world type. The biome is intended to have the largest density of Netherwood trees.
🔧Changed:
* Now built on Forge 35.0.1 and that's the minimum Forge version, for Minecraft 1.16.4.
* Nerfed the rate in which Netherwood Trees get generated at most Nether biomes.
* Changed the default frequency of Netherwood Trees in config from 16 to 12.
* Changed mod config file from morecraft-common.toml to morecraft.toml
❌Removed:
- Removed morecraft-client.toml as the config file is empty.
==[ MINECRAFT 1.16.3]==
=======================
## [4.2b3] - 2020-10-28
This is going to be the last of the beta release before the full 4.2.0 release, scheduled for 1.16.4!
In addition to the Glowstone Lanterns and Sweetberry Pies, it also features gear rebalancing to make sure Netherite isn't overshadowed and make some materials more distinct and viable.
🌟Added:
+ New block: Glowstone Lanterns! Works identically to regular lanterns and has maximum brightness.
+ New item: Sweetberry Pies! Restores 8 points of hunger when eaten and has 0.8 saturation.
+ Added French and German translations to Glowstone Lanterns and Sweetberry Pies.
+ Added Chainmail recipe. Use the Chains to craft a suit of chainmail. I know it's slightly expensive but hey, chainmail should be rarer, right?
🔧Changed:
* Bone Lord and Wither Bone now use Smithing Table. Upgrade Bone Armour with Skeleton Skull for Bone Lord armour, and Wither Bone for Wither Bone equipment. The old recipes are removed.
* Changed the Wither Bone recipe to yield only 1 Wither Bone. To compensate, each Wither Bone can be broken down into 6 Wither Bonemeals.
* Nerfed the Wither Bone so its durability now sits between Diamond and Netherite. Harvesting speed is also slightly nerfed but it's still slightly faster than Netherite. All in all, Wither Bone is now designed to be a sidegrade to Netherite.
* Enderdragon Scale armour now offers slightly less protection than diamond, but it still remains extremely durable and enchantable.
* Obsidian tool material now has its harvest speed adjusted to be on par with Golden tools. Obsidian material enchantability adjusted to be just 2 above gold.
* Adjusted Ruby enchantability to be just 2 below gold.
* Unified Emerald enchantability of both tools and armour to be both 16.
* Increased the Harvest Level of Wither Bone and Bedrock tools to 4 to match Netherite.
* Updated Enderdragon Scale chestplate and leggings item textures.
* Adjusted Bone and Wither Bone armour texture so leggings are now more noticeable, and the codpiece appears when wearing leggings instead of boots.
* Changed Bone Lord armour textures to make it closer to the default 16x16 resolution.
* Updated Bedrock Bricks texture to be based on the new Bedrock texture.
* Changed default Netherwood generation frequency back to 16.
🐞Fixed:
> Adjusted French and German translations of a few more items I've overlooked.
> Fixed Glowstone Torch and Name Tag recipe toast not appearing.
> Fixed Elytra crafting recipe and the toast should also now appear when having End Crystal and Phantom Membrane.
> Fixed Totem crafting recipe. It also should now be very expensive to make.
❌Removed:
- Removed recipe configuration from config file for now. I still don't know how to re-implement conditional recipes.
=======================
## [4.2b2] - 2020-10-24
In addition to Netherite Trapdoors being introduced, here's a boatload of fixes and tweaks!
🌟Added:
+ New block: Netherite Trapdoors. Like iron trapdoors, they can only be opened with Redstone signal. Craft with 4 Netherite ingots in same manner as you would normally craft using iron ingots. Like other Netherwood-related items, they can't burn in lava.
+ Added French and German translations for Warped & Crimson Boats and Netherite Doors & Trapdoors.
🔧Changed:
* Redone the translations of France French and Canadian French for consistency with the rest of vanilla items. I may have overlooked some things.
* Updated German translations to better match the rest of the items. Fixed accent characters of de_at.json.
* You now need diamond pickaxe or better to properly break and pick up Netherite Doors and Trapdoors. They'll take long to break and drop nothing otherwise.
* Netherite Horse Armour item is now immune to lava.
* Ruby blocks can now be used as base for Beacons and Rubies can now be used as payment for beacons.
🐞Fixed:
> Fixed the missing recipes and added recipe toasts: Netherwood Trapdoors and Stripped Netherwood Wood.
> Fixed the Knockback Resistance on certain armours.
> Fixed the transparency for potted Netherwood Saplings.
> Fixed the pickaxe harvest level requirements for mod-added blocks that require minimum harvest level.
> Fixed the items disappearing within Netherwood chests and their trapped variant.
=======================
## [4.2b1] - 2020-10-21
It has been quite the undertaking but MoreCraft is now on Forge for Minecraft 1.16.3! As such, this mod is in beta. There may be additional features down the line but it's a significant update.
Now built on Forge 34.1.23 and as such, this is the minimum version to use the mod.
🌟Added:
+ Added Warped and Crimson Boats. Seems weird that those wood types are missing the boats. They can float on lava. Don't worry, Striders are still there! They might be a bit sad.
+ Added Netherite Doors. They can only be opened with redstone signal just like iron doors. They're blast-proof. No trapdoors yet, though. Made with 6 Netherite Ingots.
+ Added Netherite Horse Armour. Obtain by upgrading Diamond Horse Armour at Smithing Table using one Netherite Ingot, just like how you'd upgrade diamond gear.
🔧Changed:
* Updated the code for generation of Ruby Ores and Netherwood Trees.
* Updated the textures of Netherwood Doors to look cleaner.
* Netherwood Trees now come in more forms. There's 30% chance the Netherwood Tree will be forked just like Acacia, this is done to diversify the looks.
* Netherwood Trees can now grow on Soul Soil.
* Added toast for Nether boats when looking at water. That may be changed at a point.
* Picking up leather now properly triggers recipe popup for saddles.
💭Known Issues:
- Lava still renders in nether boats. I don't know how I could fix that.
- Some odd inconsistency with some stuff.
==[ MINECRAFT 1.15.2]==
=======================
## [4.1.1] - 2020-11-23
This is the final mod update for Minecraft 1.15.2 and support will no longer be provided as the mod is now focused on newer versions of Minecraft. The content and fixes are backported from later versions.
🌟Added:
+ New blocks: Glowstone Lanterns and Netherwood Bookshelves! They maintain their functionality from later versions.
+ New potions: Potion of Resistance and Potion of Glowing!
+ New item: Guardian Scales! Use them to brew Potions of Resistance!
+ New item: Sweetberry Pies! Very sweet!
+ New item: Stews! Feast your eyes on six different stews! Pork, Beef, Chicken, Mutton, Fish, and Spider!
🔧Changed:
* Updated block and item textures to match mod version 4.2.2.
* Breaking cakes now cause cake slices to be dropped equal to 7 minus the amount of bites.
* Updated Cake Slice recipe to yield 7 slices due to cakes having 7 bites.
* Updated language files for parity.
🐞Fixed:
> Fixed Netherwood sign text colour not changing on applying dyes.
=======================
## [4.1.0] - 2020-07-04
Finally, the mod is now available on 1.15.2, so you can enjoy everything from Buzzy Bees and be able to play with this mod!
🔧Changed:
* Built on Forge 31.2.0 and as such, you need to run this version at minimum.
* There might still be some bugs as I had to change the code. AGAIN.
==[ MINECRAFT 1.14.4]==
=======================
## [4.0.2] - 2020-06-26
Just a small update to fix Glowstone Torch-related recipes and rebalance.
🐞Fixed:
> Fixed the recipe for Glowstone Torch to use Glowstone Dust, not block.
> Adjusted the Glowstone Torch recipe so it yields 2 torches instead of 4 for balance.
> Picking up Glowstone Dust should now trigger the Glowstone Torch recipe unlocked.
=======================
## [4.0.1] - 2020-06-09
🐞Fixed:
> Fixed JEI incompatibility issue.
=======================
## [4.0.0] - 2020-06-09
Hooray, the mod is now out of beta and into release! The mod also makes use of Biomes o' Plenty and NetherEx by having Netherwood trees generate in a few Nether biomes that fit the most.
If you're feeling quite primitive and savage, you can make carpet from flesh. And new type of bonemeal has been discovered, made from the bones of Withers. They seem to have substantially different effects! Lots of things have been fixed and polished, and consistency fixes have been brought to restore order.
🌟Added:
+ New block: Flesh Carpet. Crafted with two flesh blocks in similar manner to crafting carpets. Yields 6 carpets.
+ New item: Wither Bonemeal. If used on grass and podzol, it turns the blocks into mycelium. If used on flowers, it turns the flowers into Wither Rose. If used on saplings, it turns saplings into dead bushes. But hey, it makes dead bushes now renewable! You can obtain wither bonemeal by breaking down a Wither Bone by crafting. Each bone yields three bonemeals.
+ Added advancements for more recipes.
* Added translation for Health Boost-related items, Wither Bone Meal, and Flesh Carpet for all French and German variants.
🔧Changed:
* You can now properly break down cobwebs into 9 strings on a crafting grid.
* You can now craft Netherwood Wood from four Netherwood Logs, yielding three wood.
* Drowneds now have a chance to drop Zombie Heads, as they're variants of Zombies.
* Gunpowder Blocks are now flammable! Keep fire away from those blocks as fire will consume them quickly!
* Updated Netherwood Door and Flesh Block textures.
* Ruby Ores and Ruby Blocks now require iron pickaxe or better to harvest.
* Ender Blocks and Blaze Blocks now require stone pickaxe or better to pick up.
* Regular Apple Pies can be put in composter now.
* Changed de_at (Austrian German), de_ch (Swiss German), and de_de (German) so they're different.
* Cleaned up more code. The mod no longer uses logger to stop clogging up output.
🐞Fixed:
> Corrected the brewing process of Health Boost potions and should also no longer interfere with vanilla brewing.
=======================
## [4.0b2] - 2020-05-28
What is this? Another mod build? With lots of fixes and enhancements? Cats now got a bit more annoying and now they have taken a liking to Netherwood chests. In fact, they'd even try to sit on them! But hey, it's not all bad as you get to feast your eyes on this delicious change log! With so many changes, I'm closer to truly moving the mod out of Beta and into Release!
🌟Added:
+ New items: Health Boost Potions! Brew Enderdragon Scales into awkward potions to create them. They can be extended, strengthened and converted to splash and lingering potions as is the case with all vanilla potions.
+ Added more tags to more mod-added blocks. The list is non-exhaustive:
* All four mod-added doors for doors
* Netherwood trapdoor for trapdoors
* Potted Netherwood Sapling for flower_pots
* Ruby ores and blocks for Forge tags
🔧Changed:
* You'll now take lava damage while riding Netherwood Boats if your head is inside lava unless you have Fire Resistance. Avoid the lavafalls! Likewise, don't let your Netherwood Boat sink!
* Cats will now attempt to sit on Netherwood Chests.
* Nether Apple Pies also now grant random effects but the chance is increased and if rolled for random effects, there's 30% chance that effects will be amplified whenever applicable.
* Nether Apples (and the pie) can also confer Resistance, Fire Resistance, and Glowing in addition.
* For consistency, Blaze Hoes and Wither Bone Hoes now inflict fire and wither respectively.
* Obsidian Axe now strikes faster, on par with Diamond Axe in speed but still 1 higher damage than diamond.
* Bedrock Bricks are now immune to Enderdragon and Wither.
* Redone Gunpowder Block, Blaze Block, and Ruby Block textures.
* Redone Slime Armour, Flesh Armour, and Spider Silk Armour item texture to match the updated vanilla textures.
* Spider Silk worn armour texture has been changed.
🐞Fixed:
> Nether Apples now once again grant random effects when eaten.
> Wither Bone tools and armour are now Legendary-rarity once again.
> Wearing full Blaze armour should now grant Fire Resistance once again. It won't overwrite existing potion effect!
=======================
## [4.0b1] - 2020-05-18
More work has been done and many of the major bugs have been fixed. Thus I've decided to move the mod out of alpha and into beta. The main changes are that language files should be updated and it's now safe to get off Netherwood Boats while in lava.
🌟Added:
+ Added British English. Currently this is the same as Canadian English.
🔧Changed:
* Blaze armour item texture has been updated.
* Tweaked Emerald Axe texture to be a bit more shiny.
* Updated the worn texture for Ruby, Emerald, Ender, and Slime armour.
* Adjusted glass door item texture.
* Changed French, Spanish, German, and Russian language files to JSON format, and added translations for the following items:
* Netherwood wood, stripped variants of logs & wood, signs, buttons, pressure plates, and trapdoors.
* Nether Apple Pies.
* Obsidian, Bone, Ruby, and Emerald Horse Armour.
* Adjusted the exp from cooking the food from 1 to 0.35 to bring it in line with vanilla food.
* Tweaked the damage and speed of axes so they're more consistent.
🐞Fixed:
> Rotten Flesh should now be cookable once again in furnace.
> You can now cook Rotten Flesh, Spiders, Squids, Guardian Meat, and Eggs with Smoker and Campfire.
> Ruby Ores now work with Blast Furnace.
> Wither tools now inflict Wither status effect and Blaze tools now set mobs on fire once again. Hoes are the current exception though.
> Fixed players catching fire after dismounting Netherwood Boats while in lava.
❌Removed:
- Removed recipe configuration from config file as I figure out how to get them working with recipes.
=======================
## [4.0a2] - 2020-05-15
This is the second alpha release and if things go well, the next release might be beta!
The prominent change is that the signs should be working on servers now!
🌟Added:
* Added Netherwood Buttons and Netherwood Pressure Plates. Crafted in the same manner as other wooden buttons and pressure plates and behave the same way as vanilla wooden buttons and pressure plates.
* You can now place Netherwood Saplings in Flower Pots!
🐞Fixed:
> Netherwood Signs should be working in servers now!
> Bone Lord armour is now marked as Uncommon-rarity.
> Ruby Ores now once again yield experience when mined.
=======================
## [4.0a1] - 2020-05-13
After over a week of struggling, I finally got the mod ported over to Minecraft 1.14.4 which means the massive hurdle has been crossed. There's still work to be done and as such, this mod is in alpha until I can get more bugs fixed. Make sure to use Forge 28.2.0+ or the mod won't work.
Change Log
🌟Added:
+ New additions!
* Netherwood Trapdoor
* Netherwood Sign (Currently disabled on multiplayer)
* Netherwood Wood
* Stripped Netherwood Logs & Wood
* Four new horse armours!
* Comes in bone, obsidian, ruby, and emerald.
* All of them are craftable. To craft, it's the same shape as leather horse armour but replace the leather with the material except for the middle leather.
* Netherwood Apple Pie
* Craft as you would normally make Apple Pies, but with Nether Apple in place of regular apple.
* Currently, there are no effects on eating other than refilling hunger.
* With Minecraft having received new textures, many of the blocks and items now have textures changed for consistency. The old textures have been kept if you want to use Programmer Art textures.
* Redone Ruby, Emerald, Obsidian, and Ender sword and armour item textures.
* Redone Apple Pie and Nether Apple item textures to match closely to Pumpkin Pie.
* Netherwood planks and chests have been redone.
* Soul Glass texture has been tweaked so the border matches the new glass.
* Updated Glass Door texture to match the new glass blocks, now much more clear.
* Glowstone Torches are now waterproof! This integrates the new waterlogging feature.
* Netherwood Logs and Netherwood Wood can be stripped with axe for consistency with the new log-stripping feature.
* Leashes can be attached to Netherwood Fences.
* Quality of Life: You can add poisonous potatoes to composter. Now they're no longer entirely useless!
* As part of the integration, Netherwood Leaves, Nether Apples and Nether Apple Pies are compostable.
* Changed the crafting recipe of iron, gold, and diamond horse armour to be consistent with leather horse armour.
* Cobwebs now require 9 strings to make. This is not finalized.
💭Known Issues
- Netherwood Signs are currently disabled on multiplayer. It required having custom GUI to even get it working.
- Going into lavafall while in Netherwood Boat will sink your boat. Avoid them.
- Dismounting Netherwood Boat that is in lava will set you on fire.
- Ruby Ores don't yield XP while mined.
- Lava appears in Netherwood boats.
- Nether Apples no longer confer random effects.
What's Next?