-
Notifications
You must be signed in to change notification settings - Fork 0
/
forge-1.12.2-14.23.2.2611-changelog.txt
13442 lines (10667 loc) · 612 KB
/
forge-1.12.2-14.23.2.2611-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
Changelog:
Build 2611:
LexManos: Bump version for RB.
Build 1.12.2-14.23.1.2610:
bs2609: New hook in WorldProvider to control client lighting re-checks (#4645)
bjfccb: Fix inconsistency between vanilla and modded glass. Closes #4679 (#4680)
bs2609:
Change chunk gen command to only keep the target dimension loaded
(#4705)
Build 1.12.2-14.23.1.2609:
CreativeMD:
New hook to delegate some liquid related physics to the blocks
themselves. (#4604)
Build 1.12.2-14.23.1.2608:
bartek.bok: Remove texture loads from SimpleModelFontRenderer (#4721)
Build 1.12.2-14.23.1.2607:
bs2609: Fix some shapeless recipes using damageable items not working (#4713)
Build 1.12.2-14.23.1.2606:
bs2609:
Use relative time offset, rather than absolute value, for animations
(#4635)
Build 1.12.2-14.23.1.2605:
malte0811:
Fixed UV contraction for the texture in the top-left corner of the
texture map (0, 0), see sp614x/optifine#1024 (#4703)
Build 1.12.2-14.23.1.2604:
Leviathan143:
Fix some test mods preventing Forge server-Vanilla client connections
(#4616)
Build 1.12.2-14.23.1.2603:
mezz:
Fix errors in preInit being lost when followed by a crash in
fireRegistryEvents or objectHolder
Build 1.12.2-14.23.1.2602:
SirWindfield: Added @Ignore to the annotation based Config system. (#4696)
Build 1.12.2-14.23.1.2601:
mezz: Improve error message on server when a vanilla client connects (#4691)
Build 1.12.2-14.23.1.2600:
malte0811:
Fixed pumpkins passing the wrong position to isSideSolid on placement
(#4686)
Build 1.12.2-14.23.1.2599:
williewillus: Fix MusicType enumhelper not working (#4682)
Build 1.12.2-14.23.1.2598:
williewillus: Expose CriteriaTriggers.register, closes #4109 (#4634)
mezz:
Make FluidUtil sounds server-side, add simulate option for
tryFill/EmptyContainerAndStow (#4623)
Build 1.12.2-14.23.1.2597:
ichttt: Fix forge fluids being treated as solid blocks (#4606)
bs2609: Catch and log exceptions during model baking (#4609)
Build 1.12.2-14.23.1.2596:
JDLogic: Fix default GUIConfig displaying child categories twice (#4599)
alexbobp:
Add MobSpawnerBaseLogic reference to SpecialSpawn and CheckSpawn events
(#4600)
Build 1.12.2-14.23.1.2595:
bs2609: Add missing check for allowed values to recolorBlock() (#4579)
loopycoaster_8:
Moved firing the MinecartInteractEvent from individual subclasses up to
EntityMinecart, which as a result automatically supports
EntityMinecartMobSpawner and EntityMinecartTNT. (#4583)
Tyler Hancock: Added a tooltip color event. (#4595)
Build 1.12.2-14.23.1.2594:
williewillus: Allow WorldProviders to specify in-game music (#4539)
bs2609: Make async chunk loading a config option (#4544)
mezz: Avoid copying Forge Registry keys, values, and entries (#4545)
Build 1.12.2-14.23.1.2593:
Laughlan Coventry: Block::addRunningEffects (#4248)
Build 1.12.2-14.23.1.2592:
Leviathan143:
[1.12.x] Implement hooks allowing mods to add horse armor. Partially
addresses #3975. (#3994)
Build 1.12.2-14.23.1.2591:
LexManos: Fix debug flags for ClassPatchManager not working. Closes #3674
Build 1.12.2-14.23.1.2590:
mezz: Fix FML error logging for mods that crash during FMLLoadCompleteEvent
Build 1.12.2-14.23.1.2589:
mezz: Minor code and documentation cleanup. (#4664)
Build 1.11.2-13.20.1.2588:
bs2609:
[1.11] Fix dormant chunk cache allowing entity data to be overwritten
(#4672)
Build 1.12.2-14.23.1.2587:
bs2609: Fix dormant chunk cache allowing entity data to be overwritten (#4528)
Build 1.12.2-14.23.1.2586:
bs2609: Fix dimension data not being saved (#4667)
Build 1.12.2-14.23.1.2585:
bartek.bok: Don't copy state from variant to multi-part model (#4629)
Build 1.12.2-14.23.1.2584:
josephcsible: Fix vanilla giant jungle trees causing cascading generation (#4652)
Build 1.12.2-14.23.1.2583:
knightminer4: Fix Beetroot crops don't break/drop when trampled (#4644)
Build 1.12.2-14.23.1.2582:
bartek.bok:
Enhance crash message when custom models return null default state
(#4615)
Build 1.12.2-14.23.1.2581:
mezz: Update Github StaleBot config to run on old Issues as well as PRs
Build 1.12.2-14.23.1.2580:
LexManos:
Downgrade RegistryEntry's dangerous alternative prefix message to info
instead of BigWarning. This is still most likely a broken mod, but
nobody ever actually fixes themselves, and i'm tired of being blamed for
'spamming' the logs.
Build 1.11.2-13.20.1.2579:
bartek.bok: Fix invalid rendering of single-frame B3D models (#3917)
Build 1.12.2-14.23.1.2578:
LexManos:
Fix missing call to release() in the event channel handler (#4513)
(reverted from commit cd99957627625f7baeff8761c6382b05db9699d3)
Build 1.12.2-14.23.1.2577:
Leviathan143:
Add some extra context to Advancements/Minecart/Fishing/TileEntity loot
handlers.(#4443)
mccommanderminecraft: Added Custom Slime Block hook for Piston. (#4520)
Build 1.12.2-14.23.1.2576:
bartek.bok: Fix animation of rotated block parts (#4156)
bartek.bok: Fix invalid rendering of single-frame B3D models (Fix #3815)
bs2609: Adjust diffuse light calculation to match vanilla facing values (#4305)
bs2609: Fix applyUVLock not preserving input order (#4336)
bs2609: Adjust light matrix calculations to use per-face logic (#4339)
Build 1.12.2-14.23.1.2575:
tterrag1098: Fix BakedQuadRetextured not overriding getSprite (#4137)
Build 1.12.2-14.23.1.2574:
bs2609: Fix missing call to release() in the event channel handler (#4513)
kashike: Delay egg creation to avoid null statistics (#4508)
arturzartdinov:
Added LivingKnockBackEvent event to allow better control over knock back
effects. (#4503)
Build 1.12.2-14.23.1.2573:
mrkirby153:
Reimplemented TileEntity and Entity Update Profiling in the /forge track
command (#4521)
Build 1.12.2-14.23.1.2572:
bs2609: Don't enforce IPv4 for clients connecting to IPv6-only servers (#4563)
JDLogic: [macOS] Fix missing text on loading error screens (#4532)
Build 1.12.2-14.23.1.2571:
bs2609: Add an event for registering block/item colour handlers (#4565)
Build 1.12.2-14.23.1.2570:
josephcsible: Deprecate passing a class to CapabilityManager::register (#4574)
josephcsible:
Make vanilla powered rails receive power from mods' custom powered rail
subclasses (#4573)
matthewprenger: Fix startIndex for /forge generate position parsing (#4572)
AlgorithmX2: BlockFlowerPot now checks solid top side instead of old method. (#4571)
AlgorithmX2: Fix: Anvil Bug with Custom Damage Items. (#4570)
Build 1.12.2-14.23.1.2569:
mezz:
Change how chests check if they're blocked. (#4584)
Readd Vanilla Bug: https://bugs.mojang.com/browse/MC-378
bs2609: Add missing nullability annotations to some Forge-added methods (#4578)
Build 1.12.2-14.23.1.2568:
BillyGalbreath:
Allow EntityFishHook to spawn water particles in all liquids that use
Material.WATER (#4585)
Build 1.12.2-14.23.1.2567:
gegy1000: Add Sound loading progress bar (#4593)
Build 1.12.2-14.23.1.2566:
bs2609: Clean up capability checking for entities (#4591)
Build 1.12.2-14.23.1.2565:
bs2609: Fix sometimes being unable to extract items from double chests (#4590)
Build 1.12.2-14.23.1.2564:
josephcsible:
Fix item handler documentation that says returning ItemStack.EMPTY is
required (#4587)
Build 1.11.2-13.20.1.2563:
bartek.bok: Fix invalid FastTESR quad ordering (#3900)
Build 1.12.2-14.23.1.2562:
julian_abelar: Added color as field with setter to Fluid class. (#4460)
Build 1.12.2-14.23.1.2561:
mezz: Prevent tooltips from going off the top of the screen.
Build 1.12.2-14.23.1.2560:
Anthony Lomeli: [1.12] Add Advancement Event (#4467)
Build 1.12.2-14.23.1.2559:
mezz: Update java docs for IItemHandler. Fix #4553
Build 1.12.2-14.23.1.2558:
LexManos: Re-enable Vanilla's Shapeless recipe matching.
LexManos: Restore binary compatibility in EntityItemPickupEvent
Build 1.12.2-14.23.1.2557:
draco18s:
Fix for the EntityItemPickupEvent having 0 count item when event is
fired. (#4549)
Build 1.12.2-14.23.1.2556:
bs2609: Don't force IPv4 network stack if IPv6 is specifically requested (#4547)
Build 1.12.2-14.23.1.2555:
LexManos: Fix more bad shapeless recipe matching. Closes #4557
Build 1.12.2-14.23.1.2554:
LexManos: Version bump for Recommended Build.
Build 1.12.2-14.23.0.2553:
williewillus: Add TAG_LONG_ARRAY to Constants.NBT (#4552)
Build 1.12.2-14.23.0.2552:
LexManos:
Create custom shapeless recipe matching system. Should solve #4516
damageable items in shapeless recipes.
Build 1.12.2-14.23.0.2551:
mezz: Clean up old code for detecting BaseMods. Close #4530 (#4540)
Build 1.12.2-14.23.0.2550:
Laughlan Coventry: Fix BufferBuilder not expanding under some conditions. (#4538)
Build 1.12.2-14.23.0.2549:
mezz: Add support.yml for support bot on github.
Build 1.12.2-14.23.0.2548:
bs2609: Fix errors caused by multi-target messages sent from LAN host (#4536)
Build 1.12.2-14.23.0.2547:
bs2609: Fix server icon response leaking buffer (MC-122085) (#4534)
Build 1.12.2-14.23.0.2546:
LexManos: Fix CompoundIngredents not working properly in shapeless recipes.
Build 1.12.2-14.23.0.2545:
goto.minecraft: [1.12.x] Added BucketUse event to ForgeUniversal Bucket (#4454)
Build 1.12.2-14.23.0.2544:
williewillus:
Non-player entities now respect WorldProvider.getMovementFactor, closes
#4470 (#4471)
Build 1.12.2-14.23.0.2543:
bs2609: Fix entity spawn messages not handling buffer correctly (#4524)
Build 1.12.2-14.23.0.2542:
LexManos:
Make Ingredient explode wildcard values like OreIngredient. Fixes some
issues related to Grums order fix for Shapeless recipes. Other more
advanced usages need to be documented and tested.
Build 1.12.2-14.23.0.2541:
st.kupr:
Fix server incorrectly marked as stopped before forge's
handleServerStopped() (#4517)
Build 1.12.2-14.23.0.2540:
bs2609: Fix network buffer leak with multi-part messages (#4511)
Build 1.12.2-14.23.0.2539:
bs2609: Fix buffer leak in vanilla custom payload packet handling (#4512)
Build 1.12.2-14.23.0.2538:
bs2609: Fix network buffers not being released in some places (#4510)
Build 1.12.2-14.23.0.2537:
JDLogic:
Fix resource loading on some mac systems when SplashProgress is enabled
(#4082)
Build 1.12.2-14.23.0.2536:
bs2609: Change item model alpha tests to match values used for rendering (#4490)
bs2609: Fix incorrect lighting of item models (#4493)
BillyGalbreath: Fix MC-51150 (#4495)
Build 1.12.2-14.23.0.2535:
bartek.bok: Fix NPE when player tries to sleep without bed (#4487)
Build 1.12.2-14.23.0.2534:
goto.minecraft: Added tint index of 0 to fluid models (#3938)
Build 1.12.2-14.23.0.2533:
bartek.bok: Fix FastTESR quad sort (#4298)
Build 1.12.2-14.23.0.2532:
zzzz:
Fix the incorrect matching algorithm in ShapelessRecipes and
ShapelessOreRecipe (#4472)
Build 1.12.2-14.23.0.2531:
bs2609: Fix BlockDynamicLiquid using mismatched state/position pair (#4501)
Build 1.11.2-13.20.1.2530:
bs2609: Recalculate chunk heightmap minimum (MC-117412) (#3888)
Build 1.12.2-14.23.0.2529:
bs2609: Fix more test mod warnings (#4477)
Build 1.12.2-14.23.0.2528:
bartek.bok: Add LivingDamageEvent (#4349)
Build 1.12.2-14.23.0.2527:
Zaggy1024: Added a cloud renderer that uploads geometry to the GPU. (#4143)
bartek.bok: Add InputUpdateEvent (#4356)
yrsegal:
Create IRecipeContainer interface and implementation to allow RecipeBook
to work on custom GUIs (#4480)
Build 1.12.2-14.23.0.2526:
bs2609: [1.12] Replace ThrowableImpactEvent with a more generic version (#4040)
Build 1.12.2-14.23.0.2525:
bs2609: Clean up more deprecated library functions (#4283)
PProvenzano: Allow custom selector types to be defined (#4259)
ctmods01: Fix GameData#revert ignoring RegistryManager parameter (#4232)
joe.flatt: Fixed property losing state after rename. (#4123)
bs2609: Clean up BlockSnapshot code (#3737)
Build 1.12.2-14.23.0.2524:
williewillus: Move reach distance to an attribute (#4331)
AEnterprise: Improve performance of World.collidesWithAnyBlock (#4286)
Build 1.12.2-14.23.0.2523:
bs2609: Further reduce quad count of generated item models (#4448)
bs2609: Prevent fake players from making advancements (#4438)
mezz: Improve the Forge Bucket (#4435)
Bward7864:
Resolve a crash relating to plantFlower when biome has no flowers
(#4381)
Build 1.12.2-14.23.0.2522:
bs2609: Recalculate chunk height map minimum on load (#4453)
bs2609: Fix killing blow causing combat tracker to lose data (MC-121048) (#4452)
Build 1.12.2-14.23.0.2521:
bs2609: Improve performance of inserting into inventory wrappers (#4468)
julian_abelar:
Changed BlockFluidBase "fog" color use color from Fluid getColor()
method (#4462)
Build 1.12.2-14.23.0.2520:
LexManos:
Fix some locations where State Sensitive Materials were not used. Closes
#4474
Build 1.12.2-14.23.0.2519:
bs2609: Add caching of data for flat lighting (#4358)
Build 1.12.2-14.23.0.2518:
bs2609:
Fix spider/chicken jockeys being unable to spawn naturally (MC-103516)
(#4429)
Build 1.12.2-14.23.0.2517:
mezz: Clean up Forge commands. Add HelpCommand. Fix #4444 (#4451)
Build 1.11.2-13.20.1.2516:
bartek.bok: Fix stacked entity item rendering (#3886)
Build 1.12.2-14.23.0.2515:
bs2609: Fix some more test mod warnings (#4469)
Build 1.12.2-14.23.0.2514:
mincrmatt12: [1.12.x] [Animation API] Add rotation origin variable (#4466)
Build 1.11.2-13.20.1.2513:
bs2609: Save/restore dormant chunk entity data from NBT (#3940)
Build 1.12.2-14.23.0.2512:
bs2609: Fix some warnings produced by test mods (#4456)
Build 1.10.2-12.18.3.2511:
mezz: Fix performance regression in FastTESR rendering
Build 1.11.2-13.20.1.2510:
mezz: Fix performance regression in FastTESR rendering
Build 1.12.2-14.23.0.2509:
mezz: Fix performance regression in FastTESR rendering
Build 1.12.2-14.23.0.2508:
mezz: Fix outdated VersionParser javadoc link
Build 1.11.2-13.20.1.2507:
PProvenzano:
Clean up Block.getLightValue(IBlockState, IBlockAccess, BlockPos)
(#4202)
Build 1.11.2-13.20.1.2506:
p3pp3rf1y: Change to allow items to interact with villagers (#4194)
Build 1.11.2-13.20.1.2505:
bs2609:
Add a hook to allow world providers to change the lightmap colours.
(#3922)
Build 1.11.2-13.20.1.2504:
rasheeqhere: Add smarter getter for block slipperiness (#3620)
Build 1.12.2-14.23.0.2503:
mezz: Add configuration for probot-stale for github
Build 1.12.2-14.23.0.2502:
mezz: Update mcp mappings to 20171003
Build 1.12.2-14.23.0.2501:
mezz: [1.12] Add support for client & server dependencies for mods (#4403)
Build 1.12.2-14.23.0.2500:
mezz: Add Item.getModId to show which mod is associated with a subitem (#4330)
Build 1.12.2-14.23.0.2499:
erlend: Add Chunk capabilities (#4228)
Build 1.12.2-14.23.0.2498:
python0429: Add hook to configure EntityEquipmentSlot for item.
bs2609: Fix block and torch placement logic not matching vanilla (#4210)
bs2609: Fix being unable to see with night vision under some conditions (#4383)
tterrag1098: Allow item models to use formats other than ITEM (#4273)
erlend: [1.12] Check both hands for sneak interaction bypass (#4256)
bs2609: Reduce the number of quads generated by ItemLayerModel (#4332)
bs2609:
Improve performance of vertex format mapping by caching hashcodes
(#4370)
bs2609: Fix some chunk data packets being created unnecessarily (#4414)
Build 1.12.2-14.23.0.2497:
bs2609: Store entity data for dormant chunks using NBT (#4162)
Build 1.12.2-14.23.0.2496:
williewillus:
Allow for MapDecoration to use alternate rendering, for example a custom
spritesheet (#4027)
Build 1.12.2-14.23.0.2495:
LexManos:
Remove limitation of Shaped crafting recipes not being used on grids
larger than 3x3
Build 1.12.2-14.23.0.2494:
josephcsible:
Fix not being able to write in a blank, renamed Book and Quill (#4433)
https://bugs.mojang.com/browse/MC-1685
Build 1.12.2-14.23.0.2492:
LexManos:
Add new /forge entity list command for displaying a list of all entities
in world. As well as tracking down chunks with large amounts of
entities.
Build 1.12.2-14.23.0.2491:
kashike: Prevent a mutable BlockPos leak in World#setBlockState (#4388)
flashfireex: Fix test mod shield JSON incorrect bottom face UV's (#4295)
Build 1.12.2-14.23.0.2490:
ichttt:
Fix IngredientNBT comparing stackSize when checking if ingredient is
valid (#4418)
Build 1.12.2-14.23.0.2489:
kashike:
Auto-detect registry namespace when using a legacy string id in
EntityEntryBuilder fixes #4410 (#4411)
Build 1.10.2-12.18.3.2488:
LexManos: Fix max CustomPayload size, 1MB not 16MB.
Barteks2x: Fix splitting big packets skipping one byte per additional part (#4302)
Barteks2x: Fix netty warning spam when sending >1MB packets (#4363)
Build 1.12.2-14.23.0.2487:
kashike:
Introduce entity entry builder, useful in the Register<EntityEntry>
event replacing needed calls to EntityRegistry. (#4408)
Build 1.12.2-14.23.0.2486:
LexManos: MC 1.12.2 update.
Build 1.12.1-14.22.1.2485:
paul.fulham0: Fix lightmap calculation vertex clamping (#4387)
Build 1.12.1-14.22.1.2484:
Tyler Hancock: Fix chunk gen mobs not firing the CheckSpawn event. Closes #4394 (#4396)
Build 1.12.1-14.22.1.2483:
thiakil: Add an extra error check for OBJ model materials (#4402)
Build 1.12.1-14.22.1.2482:
bs2609: Fix up test mods (#4399)
Build 1.12.1-14.22.1.2481:
LexManos:
Add new /forge gen command to generate large amounts of chunks. Usage:
/forge gen <position> <count> [dimension] [notifications] Position is in
Block Coords, and can be relative to the player. These will be converted
to chunk coords for you. Count is the number of chunks to load. This is
not a radius, actual total number of chunks. Dimension is optional, you
can use this to pregen other worlds. Notifications is the chunk interval
to inform you of the generating progress. This is optional and will be
5% or 100 whichever is higher.
Added new config option to modify vanilla world gen to fix various
cascading issues. MC-117810 MC-114332 and more. This WILL change block
placement from vanilla world gen. So this is a opt-in value. Do not
report differences in worlds with this flag enabled.
Build 1.12.1-14.22.1.2480:
LexManos: Fixed ShapedOre recipes not laying out correctly with the guidebook.
Build 1.12.1-14.22.1.2479:
Tyler Hancock: Fixed search tabs using wrong contents. (#4393)
Build 1.12.1-14.22.1.2478:
LexManos: Bump version for RB.
Build 1.10.2-12.18.3.2477:
mezz: Fix MC-117075 lag spike when unloading many tile entities
Build 1.11.2-13.20.1.2476:
mezz: Fix MC-117075 lag spike when unloading many tile entities
Build 1.12.1-14.22.0.2475:
mezz: Fix #4386 Race condition when unloading chunks causes dead tile entities
Build 1.12.1-14.22.0.2474:
bs2609: Improve generation of normals for vanilla models (#4313)
bs2609: Patch block model renderer to use location-aware light value (#4303)
Build 1.12.1-14.22.0.2473:
bk1325:
Fix CustomModLoadingErrorDisplayScreen not being handled during init or
preinit. (#4320)
bs2609: Fix light sources rendering wrongly with night vision (MC-58177) (#4365)
marvinroesch99: Fire RenderGameOverlayEvent for vignette (#4360)
Build 1.12.1-14.22.0.2472:
bs2609: Add missing bounds checks to ItemTextureQuadConverter (#4343)
dualspiral: Insert FML handler before Vanilla connection handshake completes (#4380)
Build 1.12.1-14.22.0.2471:
williewillus: Fix vanilla map pixel data being used in various places (#4068)
bs2609: Adjust float (un)packing functions to be slightly more accurate (#4316)
marvinroesch99:
Add support instructions to be displayed when creating an issue on
Github (#4323)
blay09:
Allow custom GuiEditArrayEntries without having to recreate the object
in several places (#4329)
Build 1.12.1-14.22.0.2470:
bs2609:
[1.12] Remove patches adding chunkExists() function, switch to vanilla
code (#4054)
Build 1.12.1-14.22.0.2469:
Tyler Hancock: Added missing MapGen types to the InitMapGenEvent (#4322)
Build 1.12.1-14.22.0.2468:
josephcsible:
Fix nether wart, pumpkins, and melons passing the new state as the
original state to CropGrowEvent.Post (#4377)
Build 1.12.1-14.22.0.2467:
Choonster.2010: Fix FieldWrapper.MapWrapper initialising wrong category (#4335)
Build 1.12.1-14.22.0.2466:
Choonster.2010:
Don't parse category names as regular expressions in
FieldWrapper.MapWrapper (#4334)
Build 1.12.1-14.22.0.2465:
LexManos: Fix issue saving observers using different metadata then vanilla.
Build 1.12.1-14.22.0.2464:
Barteks2x: Fix netty warning spam when sending >1MB packets (#4363)
Build 1.12.1-14.22.0.2463:
Barteks2x: Fix FML handshake crash, fixes #4285 and #3974 (#4304)
Build 1.12.1-14.22.0.2462:
LexManos: Fix recipe book auto-fill not working for OreDictionary ingredients.
Build 1.12.1-14.22.0.2461:
molecularphylo: Fix KeyBindings reset buttons being inverted.
Build 1.12.1-14.22.0.2460:
LexManos:
Fix for dummied server side registry entries while client has read
entries.
Build 1.12.1-14.22.0.2459:
marvinroesch99: Tabulate crash report mod list and add signature information (#4251)
Build 1.12.1-14.22.0.2458:
nedelosk: [1.12] Fix wood plank ore dictionary recipes (#4310)
Build 1.12.1-14.22.0.2457:
codewarrior:
Fix UnknownFormatConversionException during erroring TE/Entity removal
(#4312)
Build 1.12.1-14.22.0.2456:
LexManos:
Add support for server side only recipes, as well as detection of
vanilla client recipe book filter to prevent errors.
Build 1.12.1-14.22.0.2455:
mezz: Fix typo in CapabiltyFluidHandler (#4306)
Build 1.11.2-13.20.1.2454:
Barteks2x: Fix splitting big packets skipping one byte per additional part (#4302)
Build 1.12.1-14.22.0.2453:
Barteks2x: Fix splitting big packets skipping one byte per additional part (#4301)
Build 1.12.1-14.22.0.2452:
LexManos: Filter out scala libraries in forge dev workspace.
tterrag1098: Better descriptions on dependency version range error screen (#4284)
mezz: Fix MC-117075 lag spike when unloading many tile entities (#4281)
bs2609:
Add a hook to allow world providers to change the lightmap colours
(#4279)
Choonster.2010:
Continue loading mod recipes and advancements after encountering an
error (#4277)
bartek.bok: Fix invalid FastTESR quad ordering (#4267)
knightminer4:
Add support for running IModel.retexture() on models from blockstates
(#4200)
python0429:
Add support for oredict item predicates in advancements, and add a
registry for item predicates (#4188)
flashfireex: Add Ability to Override PotionEffect Default Sort Order (#4172)
ohai.iChun: Add PlayerSPPushOutOfBlocksEvent. (#4091)
LexManos: Fix tests
Build 1.12.1-14.22.0.2447:
LexManos:
Cleanup some output and move the Jar-In-Jar extractor to before any
coremods/mods are loaded so. The intention is to rework this entire
thing to use maven style storage, IF we can get Mojang to pass in the
Libraries folder.
LexManos: Fixed missing line in logger.
LexManos: Fix odd NPE with list files for empty directories.
LexManos: Fix IOUtils import error caused by server/client libraries desync.
Build 1.12.1-14.22.0.2446:
cpw:
Lex doesn't like this.
Revert "Fix up MC version compatibility checking to be a little less
verbose."
This reverts commit 1927fd76e20a1b3075cb841b09c2caeb57ebd242.
Build 1.12.1-14.22.0.2445:
cpw:
Fix up MC version compatibility checking to be a little less verbose. If
people use properly formatted version compatibility strings, or the
default compiled in one, this will work exactly as before, but has less
dependence on specific formats for the mcversion string. So a mod
declaring [1.11, 1.12] will now be 1.12.1 compatible by default, for
example.
Build 1.12.1-14.22.0.2444:
LexManos:
1.12.1 Update, Not much modder facing changes, 1.12 mods should load and
run fine on this version.
Build 1.12-14.21.1.2443:
rasheeqhere:
Add smarter getter for block slipperiness (#4116)
Fixed MC-119811, Boats rubber banding when dismounted.
Build 1.12-14.21.1.2442:
Laughlan Coventry: Add GuiContainer Foreground render event. (#4127)
Build 1.12-14.21.1.2441:
bs2609:
Use ClassValue to store tileentity names for profiler in lazy cache.
(#4021)
Build 1.12-14.21.1.2440:
ichttt: Move client-only config options to client config (#4084)
Build 1.12-14.21.1.2439:
goto.minecraft:
Added CriticalHitEvent to allow more control over whether a attack is a
critical or not, and what damage it does.
Build 1.12-14.21.1.2438:
bartek.bok:
Fix stacked entity item rendering using the wrong transform for the
extra items. (#4158)
Build 1.12-14.21.1.2437:
bk1325: Fix lopsided 'V' in FML icons. (#4179)
Build 1.12-14.21.1.2436:
diesieben07:
Fixed bug where config categories errored if they contained regex
special characters. (#4187)
diesieben07:
Ignore neighbor changes for comparators on the client (Vanilla behavior)
(#4186)
xalcon:
Added pages to the advancements GUI to allow for unlimited root
advancements. (#4183)
Build 1.12-14.21.1.2435:
InfinityRaider: Make LivingEntityUseItemEvent not abstract (#4208)
PProvenzano:
Clean up Block.getLightValue(IBlockState, IBlockAccess, BlockPos)
(#4203)
p3pp3rf1y: Allow sneaking to bypass villager interaction GUI. (#4193)
Build 1.12-14.21.1.2434:
bs2609:
Replace hardcoded block check with isTopSolid method call for placing
button/lever (#4212)
Build 1.12-14.21.1.2433:
python0429:
Added support for oredict dyes to Fireworks, Armors, and Shulker
recipes. (#4223)
Build 1.12-14.21.1.2432:
p3pp3rf1y: Limit some server to client update packets for Item Capabilities (#4252)
Build 1.12-14.21.1.2431:
williewillus: Fixed Armor bar disappear after changing dimension. MC-88179 (#4265)
Build 1.12-14.21.1.2430:
mezz: Fix the firing location of InputEvent.MouseInputEvent (#4270)
Build 1.11.2-13.20.1.2429:
mezz:
Allow the server to handle item-block interaction if onItemUse does not
return PASS (#3951)
Build 1.12-14.21.1.2428:
bs2609: Fix some broken test mods (#4245)
Build 1.12-14.21.1.2427:
rslink: Fixed swapping of finite fluids with negative densities. (#4237)
Build 1.12-14.21.1.2426:
marvinroesch99: Fix overrides not being read from the server registry snapshot (#4224)
Build 1.11.2-13.20.1.2425:
diesieben07: Ignore fortune for anything but seeds in crops (#3959)
Build 1.12-14.21.1.2424:
marvinroesch99: Fix some test mods crashing server caused by model loading (#4225)
Build 1.12-14.21.1.2423:
diesieben07: Fix FML handshake race condition, fixes #4219 (#4220)
Build 1.10.2-12.18.3.2422:
mezz: Prevent player from dying infinitely due to zero max health (MC-119183)
Build 1.11.2-13.20.1.2421:
mezz: Prevent player from dying infinitely due to zero max health (MC-119183)
Build 1.12-14.21.1.2420:
mezz: Prevent player from dying infinitely due to zero max health (MC-119183)
Build 1.12-14.21.1.2419:
malte0811:
[1.12] Allow the server to handle item-block interaction if onItemUse
doesn not return PASS (#3967)
Build 1.12-14.21.1.2418:
Madsthunder: Allow support for custom Shields and Shield disabling weapons.
Build 1.12-14.21.1.2417:
diesieben07: Ignore fortune for anything but seeds in crops (#4160)
ichttt: Log a warning if a coremod does not follow best practices (#4146)
python0429: Make Optional.Interface repeatable (#4138)
Build 1.12-14.21.1.2416:
xalcon: Added support for vanilla "nbt strings" in json recipes (#4113)
Build 1.12-14.21.1.2415:
LexManos:
Fix tripwire statemap not being complete when mappings change. Closes
#3924
Build 1.11.2-13.20.1.2414:
mezz: Fix unblockable damage being blocked by armor. (#3933)
Build 1.12-14.21.1.2413:
LexManos:
Fixed invalid erroring case during loading Advancements form mods that
don't have advancements.
Build 1.12-14.21.1.2412:
LexManos:
Fixed issue where rendered held items wouldn't properly update when the
reequip animations isnt shown. Closes #4175
Build 1.12-14.21.1.2411:
LexManos: Fire recipe registry event after json recipes are loaded.
LexManos:
Send remap event when data is frozen to notify modders to bake things.
Fixes search not working when connecting to vanilla servers.
Build 1.12-14.21.1.2410:
bs2609:
Clean up uses of deprecated library functions (#4130)
Avoid catching and rethrowing runtime exceptions
to exceptions instead of the log
Build 1.12-14.21.1.2409:
bs2609: Remove unneeded block patches (#4167)
Build 1.12-14.21.1.2408:
mezz: Improve javadocs for Mod dependencies (#4168)
Build 1.12-14.21.1.2407:
mezz: Fix errors in test mods
mezz: Add basic Github issue template
mezz: Stop "Binary patch set is missing" error log in dev environment
Build 1.12-14.21.1.2406:
CrafterKina: Remove unnecessary maxStackSize restrictions on brewing potions. (#4155)
Build 1.12-14.21.1.2405:
mezz:
Fix game freeze when resizing the window too small on the mods gui
(#4148)
Build 1.12-14.21.1.2404:
williewillus: Allow advancement icons to have nbt (#4114)
maxanier: Adjust EnumHelper#addCreatureType to EnumType (#4089)
Build 1.12-14.21.1.2403:
LexManos:
Fix MC-68754, Screen is not resizeable after exiting fullscreen due to
LWJGL bug
LexManos:
Attempt fix, or at least better debugging for RecipeBook accessing
unknown recipes.
Build 1.12-14.21.1.2402:
mezz: Use Item's custom FontRenderer for tooltips in the Creative Gui (#4101)
Build 1.12-14.21.1.2401:
mezz: Fix Recipe Toast crash when granted more than 5000 recipes (#4124)
Build 1.12-14.21.1.2400:
mezz:
Throw packet encoding exceptions instead of suppressing them, to prevent
corrupt packets (#4144)
Build 1.12-14.21.1.2399:
LexManos: Quiet down warning for missing translation files.
Build 1.12-14.21.1.2398:
LexManos: Update JOpt version on the dedicated server to match client.
Build 1.12-14.21.1.2397:
LexManos: Fix log spam when creating dummy blocks.
LexManos: Fix override duplication caused by bad comparison.
LexManos: Fix getting missing models for overridden Item registry entires
Build 1.12-14.21.1.2396:
mezz:
Include location of the call when a mod uses System.out or System.err
(Fix #4135)
Build 1.12-14.21.1.2394:
xalcon: Add isSpawner parameter to the CheckSpawn event (#4075)
mezz: Improve furnace fuel handling (#4083)
jmtalandar: Fix unblockable damage being blocked by armor. (#3933) (#4106)
Build 1.11.2-13.20.1.2393:
ericmyllyoja: RenderLivingEvent now stores partialTick (#3822)
Build 1.12-14.21.1.2392:
ericmyllyoja:
RenderLivingEvent now stores partialTick
2
Build 1.11.2-13.20.1.2391:
mincrmatt12: Add rotation origin variable for animated models (#3875)
Build 1.12-14.21.1.2390:
ichttt: Fix missing messages of missing models (#4120)
Build 1.12-14.21.1.2389:
CrafterKina: Correct the default resource location of potion registry (#4117)
Build 1.11.2-13.20.1.2388:
LexManos:
Add @ObjectHolder scanning to vanilla MobEffects, Biomes, Enchantments,
SoundEvents, and PotionTypes constants. Closes #4104
LexManos:
Optimize ExtendedBlockState.getClean, cache the return value instead of
calculating it. Closes #3936
LexManos: Fix BiomeDictionary not collecting correctly.
Build 1.12-14.21.1.2387:
LexManos: Version bump for RB
Build 1.11.2-13.20.1.2386:
LexManos: Version Bump for RB
Build 1.12-14.21.0.2385:
Laughlan Coventry:
Added Block::getFogColor to allow custom blocks to control fog colors
while inside them. (#4090)
Build 1.12-14.21.0.2384:
LexManos:
Optimize ExtendedBlockState.getClean, cache the return value instead of
calculating it. Closes #3936
Build 1.12-14.21.0.2383:
LexManos:
Add @ObjectHolder scanning to vanilla MobEffects, Biomes, Enchantments,
SoundEvents, and PotionTypes constants. Closes #4104
LexManos: Squelch spam in EventBus register, Closes #4102
Build 1.12-14.21.0.2382:
mezz: Use lambdas for short anonymous methods
mezz: Use java 8 collection functions
Build 1.12-14.21.0.2381:
mezz:
Use multiple catch, try-with-resources, replace system.out and
e.printStackTrace
Build 1.12-14.21.0.2380:
LexManos: Fix the creative menu search function. Closes #4100
Build 1.12-14.21.0.2379:
LexManos: Fix MissingMapping REMAP action. Closes #4069
Build 1.12-14.21.0.2378:
LexManos: Fix Biome unit test
LexManos:
Repopulate client SearchTreeManager when registries are refreshed.
Closes #4094
Build 1.12-14.21.0.2377:
LexManos: Allow the recipe registry to be modified.
LexManos: Fix error when using RegistryBuilder and not specifying a max id number.
LexManos: Add support for loading mod advancements from the mod jar files.
Build 1.12-14.21.0.2376:
LexManos: Fix BiomeDictionary not collecting correctly.
Build 1.12-14.21.0.2375:
blay09:
Remove incorrect call to .toString() when instantiating custom config
array entries. (#4078)
Build 1.12-14.21.0.2374:
vincent.lee: Remove outdated patch to BlockDoublePlant
Build 1.12-14.21.0.2373:
LexManos: Fix ItemStack/Block/BlockSpecial not applying at runtime.
LexManos: More work on registry override ability. Closes #4079
fry: Added dependencies and dependency ordering for textures. (#4070)