-
Notifications
You must be signed in to change notification settings - Fork 24
/
forge-1.8.9-11.15.1.2318-1.8.9-changelog.txt
12213 lines (9718 loc) · 572 KB
/
forge-1.8.9-11.15.1.2318-1.8.9-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 2318:
mezz: Fix log4j configuration
mezz: Fix log4j configuration
Build 1.10.2-12.18.3.2316:
mezz: Fix log4j configuration
Build 1.11.2-13.20.0.2315:
mezz: Fix log4j configuration
Build 1.11.2-13.20.0.2314:
Choonster.2010: Fix IItemHandler wrappers returned by EntityLivingBase (#3942)
Build 1.11.2-13.20.0.2313:
mezz: Fix getShareTag replacing data on the server (#3776) Closes #3682
Build 1.11.2-13.20.0.2312:
LexManos:
Fix crashed caused by bad mods reflectively breaking the grass drop
list. Closes #3943
Build 1.11.2-13.20.0.2311:
Barteks2x: Make World.isValid and World.isOutsideBuildHeight public (#3919)
erlend:
Deprecate vanilla getExplosionResistance and properly annotate the forge
replacement (#3929)
bs2609: Make Teleporter fields accessible to subclasses (#3930)
rlonryan:
Changed Event.setCanceled To throw UnsupportedOperationException instead
of IllegalArgumetnException when called on a non-cancelable object
(#3926)
williewillus: Fix canRiderInteract being called on the wrong entity (#3934)
TechnicianLP: NBTTagList implements Iterable<NBTBase> (#3884)
bs2609: Clean up MapData patch (#3905)
LexManos: Fix shaders not loading from mod domains Closes #3921
Build 1.11.2-13.20.0.2310:
mezz: Clean up formatting of Forge Test mods and disable noisy ones (#3908)
Build 1.11.2-13.20.0.2309:
InsomniaKitten: Fix broken milk bucket model (#3925)
Build 1.11.2-13.20.0.2308:
LexManos: Make hopper update accessible to subclasses. Closes #3849
lukas172: Fix patches of GuiScreen(#3704) and ItemDye(#3736) (#3878)
Build 1.11.2-13.20.0.2307:
Flaxbeard: Update EntityPlayer armor calculations and ISpecialArmor (#3838)
Build 1.11.2-13.20.0.2306:
bs2609:
Fixes for PlayerDestroyItemEvent being called with empty itemstacks.
(#3728)
bs2609:
Tweak vertex lighter to avoid causing excess array initialisations
(#3771)
Build 1.11.2-13.20.0.2305:
Madsthunder: [1.11.2] Added support for Village capabilities (#3648)
Build 1.11.2-13.20.0.2304:
bluemonster122:
Fixes BlockLiquidWrapper placing a Static fluid where it should place a
Flowing one (#3893)
Build 1.11.2-13.20.0.2303:
diesieben07: Disable frost walker enchantment on anything but vanilla water (#3906)
Build 1.11.2-13.20.0.2302:
mattmess1221: Fix head being angled badly when riding mobs. Fixes MC-1207 (#3901)
Build 1.11.2-13.20.0.2301:
mezz:
Print system details on startup without printing a full crash report
(#3909)
Build 1.11.2-13.20.0.2300:
mezz: Reduce memory pressure from new objects during loading screen (#3907)
Build 1.11.2-13.20.0.2299:
diesieben07: Add methods to write IForgeRegistryEntry to ByteBuf (#3806)
Build 1.11.2-13.20.0.2298:
tterrag1098:
Fix normals not being generated for formats without normals (#3896)
Fix normals not being generated for formats without normals
Build 1.10.2-12.18.3.2297:
mezz:
Fix MC-117087, prevent calling Class.getSimpleName on TEs unnecessarily
(#3887)
Build 1.11.2-13.20.0.2296:
mezz:
Fix MC-117087, prevent calling Class.getSimpleName on TEs unnecessarily
(#3873)
Build 1.11.2-13.20.0.2295:
ichttt: Add a configurable delay when unloading dimensions, fixes #3455 (#3679)
Build 1.11.2-13.20.0.2294:
maxanier:
Changed custom entity selectors from event based to factory based.
(#3579)
Build 1.11.2-13.20.0.2293:
ichttt:
Create ItemFishedEvent, the event is cancelable, but items are not
mutable. Use LootTables to control that. (#3705)
Build 1.11.2-13.20.0.2292:
williewillus: Fix forge pipeline block shifts (#3789)
Build 1.11.2-13.20.0.2291:
maxa.shen: Add pack.mcmeta to examplemod (#3813)
Build 1.11.2-13.20.0.2290:
bs2609:
Relocate TileEntity#onLoad call to after it's added to the world instead
of the chunk so as to have a valid world reference (#3836)
Build 1.11.2-13.20.0.2289:
diesieben07:
Allow client commands to control whether they can be invoked without
prefix. (#3847)
mezz: Improvements to FluidUtil (#3839)
Build 1.11.2-13.20.0.2288:
mezz:
Remove splash.properties option for Mojang logo (has been disabled)
(#3859)
Fix backgound color being applied to the Forge logo
mezz: When the window is closed during loading, exit the game quickly (#3858)
Build 1.11.2-13.20.0.2287:
ichttt: Fix GuiMultipleModsErrored ignoring scrolling with mouse wheel. (#3861)
Build 1.11.2-13.20.0.2286:
Madsthunder:
[1.11.2] Fixed Zombie Villagers not setting and getting professions
correctly (#3678)
Build 1.11.2-13.20.0.2285:
JDLogic:
Prevent NPE in ConfigManager and fix config gui being enabled for all
mods. Fixes #3856. (#3860)
Build 1.11.2-13.20.0.2284:
LexManos:
Fix return value of ItemHandlerHelper.insertItem being incorrect when
destination was null. Closes #3840
Build 1.11.2-13.20.0.2283:
LexManos:
Fix vanilla inventory wrappers not properly calling markDirty. Closes
#3854 and #3810 Also updated IItemHandler javadocs to reflect returning
EMPTY instead of NULL.
Build 1.11.2-13.20.0.2282:
cpw:
Add in a check to the splash screen. If the Display.update call takes
too long on average (over first 200 frames) we'll use a sleep based
timer to allow mods doing splash screen work some time on the LWJGL
global lock.
(cherry picked from commit 03d7eaa)
Build 1.10.2-12.18.3.2281:
github:
Fix NumberFormatException being thrown for empty ItemStack
deserialization. Fixes #3828. (#3830)
Build 1.11.2-13.20.0.2280:
LexManos:
Fix NumberFormatException being thrown for empty ItemStack
deserialization Thanks @gabizou, 1.11.2 version of #3830
LexManos: Cleanup AccessTransformer debug output
Build 1.11.2-13.20.0.2279:
kyo.se.llout: Fix Fluid models rendering with gaps (#3747) Closes #2993
Build 1.11.2-13.20.0.2278:
mezz: Fix mutable blockpos leak MC-114281 (#3742)
Build 1.11.2-13.20.0.2276:
Leviathan143:
Fix typo in LootEntry.Serialiser causing incorrect serialisation. Closes
#2757, Fixes MC-115407 (#3823)
Build 1.11.2-13.20.0.2274:
ikp10:
Add Item.canDestroyBlocksInCreative() allowing more items to not break
blocks in creative (#3805)
PProvenzano: Fix invulnerable items becoming invisible client side MC-53850 (#3807)
Build 1.11.2-13.20.0.2273:
williewillus:
Allow result of PlayerInteractEvent to be changed when it's cancelled
(#3744)
bs2609: Added missing bounds check to ChunkCache.getBiome (#3752)
bs2609: Add AnimalTameEvent for handling animal taming (#3763)
mezz:
Skip loading models if there is a fatal mod dependency error (#3772)
Close #3768
mezz: Add GenerateMinable event for mesa gold (#3774) Closes #3738
CrafterKina: Fixed HarvestDropsEvent issue by fixed-length lists on getDrops (#3778)
diesieben07: Ignore calls to sendMessage for fake players. Fixes #3796. (#3798)
Build 1.10.2-12.18.3.2272:
mezz: Fix Vanilla BlockPos memory leak MC-114281 (#3743)
Build 1.11.2-13.20.0.2271:
Da-Technomancer:
Added a boolean flag for disabling Entity onUpdate (#3731)
The flag is false by default, and if true the Entity will not update. It
is saved and loaded from NBT, and is called updateBlocked. Modders are
responsible for managing this flag for entities they with to 'freeze' or
'unfreeze'.
Choonster.2010: Add EnumHand and ItemStack to BonemealEvent (#3736)
Build 1.11.2-13.20.0.2270:
egabriel: Fix EntityFallingBlock check for ITileEntityProvider (#3711)
paulo.siqueira: Add LootTableManager to the LootTableLoadEvent (#3717)
bs2609: Revert block snapshots in reverse order. Fixes #3608.
Build 1.11.2-13.20.0.2269:
the.f1repl4ce: Added ClientChatEvent. Closes #1442 (#3704)
Build 1.11.2-13.20.0.2268:
blay09:
Fix custom array entry class for config GUI being ignored when adding
new entries (#3697)
Build 1.11.2-13.20.0.2267:
kashike: Use thread groups to detect the effective side (#3644)
Build 1.11.2-13.20.0.2266:
Silly511:
New LivingDestroyBlockEvent for controlling if some entities can destroy
blocks (#3628)
Build 1.11.2-13.20.0.2265:
LexManos: Fix arrays in map values for config system
LexManos: Fix breaking particles on dedicated server. Closes #3825
Build 1.11.2-13.20.0.2264:
LexManos: [MC-2518] Fixed missing break sound and particles. Closes #3821
Build 1.11.2-13.20.0.2263:
kirill.desirehd:
[1.11.x] Fix blank tab in creative inventory when additional tabs evenly
divisible by 10 (#3817)
JDLogic: Fix java 6/7 compatibility in GuiConfig (#3824)
Build 1.11.2-13.20.0.2262:
thilo:
Adding config GUIs to the @Config based configuration System (#3735)
Lots of internal API that modders should not touch. See test mods for
example usages.
Build 1.11.2-13.20.0.2261:
LexManos:
Fix vanilla bug where player reputations villages were reset on read.
Deprecated Username based API in favor of UUID based API.
Build 1.11.2-13.20.0.2260:
LexManos: Add setter for default key in RegistryBuilder. Closes #3804
Build 1.11.2-13.20.0.2259:
LexManos:
Fix error when reading world info for old saves with missing dimensions.
Closes #3786 #3331
Build 1.11.2-13.20.0.2258:
mezz:
Detect and log cascading chunk generation issues during terrain
population (#3756)
Build 1.11.2-13.20.0.2257:
mezz:
Fix #3733 Splash Screen memory bar background matches screen background
(#3775)
burtonjae:
Fix duplicate achievements getting added to the achievement list (#3770)
(#3779)
Build 1.11.2-13.20.0.2256:
mattia.malonni: Add additional constructors to EnergyStorage to set values at load time.
Build 1.11.2-13.20.0.2255:
diesieben07: Fix parameter-names for WorldProvider.shouldMapSpin (#3767)
Build 1.10.2-12.18.3.2254:
cpw:
Add in a check to the splash screen. If the Display.update call takes
too long on average (over first 200 frames) we'll use a sleep based
timer to allow mods doing splash screen work some time on the LWJGL
global lock.
Build 1.11.2-13.20.0.2253:
paul.fulham0:
Fix MC-112730 TE global renderer duplicate render (#3651)
* Fix TE global renderer duplicate render
Build 1.11.2-13.20.0.2252:
bartek.bok: Fix entity write catch block (#3726)
Build 1.11.2-13.20.0.2251:
Barteks2x:
Fixed TESR items not rendering correctly before entering world
(MC-112292) (#3666)
Fixed crash when rendering text in TESR items before entering world
Build 1.11.2-13.20.0.2250:
josephcsible:
Fixed 'reset to defaults' button not working on some Forge config
fields.
Build 1.11.2-13.20.0.2249:
gigaherz:
Allow mods to set other default "home dimensions" for respawning.
(#3528)
sjx233: Add DifficultyChangeEvent (#3525)
Build 1.11.2-13.20.0.2248:
Guichaguri: Added Forge slot methods to creative container (#3581)
williewillus:
Persist PotionEffect curative items and initialize defaults from Potion
(#3573)
Build 1.11.2-13.20.0.2247:
williewillus: Restore missing Biome GetWaterColor event. Closes #3164. (#3625)
Build 1.11.2-13.20.0.2246:
dawn0966: Fixed Missing Furnace Fuels (#3627)
Build 1.11.2-13.20.0.2245-3630:
vincent.lee: Fix category comments not working. Closes #3593
bs2609: Prevent concurrent modification of ClassInheritanceMultiMap (#3632)
Build 1.11.2-13.20.0.2244:
diesieben07: Start firing AttachCapabilitiesEvent<ItemStack> (#3645)
bs2609: Fixed ChunkCache.getTileEntity creating tile entities off world thread.
ichttt: Improve exception messages during initialization.
Build 1.11.2-13.20.0.2243:
LexManos:
Add @Name annotation to config system allowing you to use custom key for
value. Also added category option to root config to allow customization.
See examples/docs for information.
Build 1.11.2-13.20.0.2242:
LexManos: Fix Poppy to Dandelion ratio
LexManos: Fixed Flower Forests not having proper flowers. Closes #3652
Build 1.11.2-13.20.0.2240:
bs2609: Use Forge setting to determine baby zombie chance. Fixes #3690.
aa1ronham:
Add a null check for the throwable message in
NetWorkDispatcher#exceptionCaught (#3688)
(cherry picked from commit 1be1bb59c5c4c7432c515ef07beb6bf7e1f6ef27)
williewillus:
Make getRGBDurabilityForDisplay use getDurailityForDisplay by default.
Closes #3670 (#3673)
bs2609: Fix bug caused by ItemMinecart patch (#3672)
CreativeMD:
Add implementation for Living Attack event on client-side for players
(#3667)
* Fixed unused import
williewillus: Fix forge:default-item missing case for FIXED transform (#3663)
Build 1.10.2-12.18.3.2239:
aa1ronham:
Add a null check for the throwable message in
NetWorkDispatcher#exceptionCaught (#3688)
Build 1.11.2-13.20.0.2238:
LexManos:
Properly fix IShearable implementation. Fixes shears taking damage
twice, mooshroom particles, and blocks dropping incorrect loot.
Build 1.11.2-13.20.0.2237:
LexManos: Fix English injection for some mods on dedicated server.
Build 1.11.2-13.20.0.2236:
LexManos:
Override Mojang's new logging config to re-enable our logging to text
file. The new launcher's GUI for logs WILL NOT WORK until they add
support on their end.
LexManos: Fix hoppers being able to insert shulker boxes into shulker boxes.
Build 1.11.2-13.20.0.2235:
tehgeek:
Stop rotation of extended pistons, beds, and double chests Fixes #3634
Fix rotation of repeaters and comparators
fry:
Added check for quad builder to always have the particle texture set,
and fixed where that wasn't true. Fixes #3653
williewillus: Fix Item.doesSneakBypassUse being applied incorrectly.
williewillus: Fix ClientTickEvent Post firing inside another profiler section (#3715)
cordonfreeman:
Fix for bad decompile process on Particle.java that causes onGround flag
to not get set properly as well as motionX and motionZ not being set to
0 when their axis has collision happening (#3716)
Build 1.10.2-12.18.3.2234:
tehgeek:
Fixed TileEntity#getRenderBoundingBox not offsetting correctly causing
more TEs to render then needed (#3709) (#3712)
Build 1.11.2-13.20.0.2233:
florian:
Fixed TileEntity#getRenderBoundingBox not offsetting correctly causing
more TEs to render then needed (#3709)
Build 1.11.2-13.20.0.2232:
cordonfreeman:
[1.11.2] Make AbstractSkeleton implementable by fixing limited access on
getStepSound (#3702)
Build 1.11.2-13.20.0.2231:
Choonster.2010: Fix extracted mods crash report file name for Windows (#3701)
Build 1.11.2-13.20.0.2230:
tehgeek:
Remove dynamic lambda methods when inside of SideOnly methods
Clean signatures of ReflectionHelper methods.
Build 1.11.2-13.20.0.2229:
LexManos: Fix world spawn fuzz.
LexManos:
Fix world spawn fuzz. (reverted from commit
450c3a80c10c1dc27ef68a3f5e5f58af6a827fde) Protip Don't code while
groggy.
diesieben07: Fix spawn-fuzz formula (#3695)
Build 1.11.2-13.20.0.2228:
diesieben07:
Fix some cases where world time is not passed through the WorldProvider.
(#3685)
Build 1.11.2-13.20.0.2227:
lukas.tenbrink:
Replace listSubtypes with listSupertypes to match the intended behavior.
(#3564)
lukas.tenbrink: Fix addTypes not adding in the base types. (#3681)
Build 1.11.2-13.20.0.2226:
goto.minecraft: this finaly fixes #2866 (#3656)
Build 1.11.2-13.20.0.2225:
williewillus: Fix MC-111753 (#3655)
Build 1.11.2-13.20.0.2224:
fry: Small bugfix in lighting logic.
fry:
Fix default missing model zoom text not being set to false on all
places.
Build 1.11.2-13.20.0.2223:
fry: Added the variant name to the missing model. (#3328)
Build 1.11.2-13.20.0.2222:
tehgeek: Fix #3635 MC-103403 fix ingredient count for ingot block recipes (#3640)
Build 1.10.2-12.18.3.2221:
LexManos:
Cache entity constructors for a small performance optimization
(cherry picked from commit 50bf03b82b72866bd54e796a37707d45bcbf3d80)
LexManos:
New client config option to force all chunk rendering off the main
thread. This may help FPS issues, but may also result in world
holes/rendering issues. Also fix Forge configs not saving properly.
(cherry picked from commit 7da6c2d0e1b0056e520990d78f63a9be8d0db5ed)
Build 1.11.2-13.20.0.2220:
LexManos:
New client config option to force all chunk rendering off the main
thread. This may help FPS issues, but may also result in world
holes/rendering issues. Also fix Forge configs not saving properly.
Build 1.10.2-12.18.3.2219:
tehgeek: Skip first baking in ModelLoader (#3621) (#3638)
Build 1.11.2-13.20.0.2218:
LexManos: Cache entity constructors for a small performance optimization
Build 1.10.2-12.18.3.2217:
tehgeek:
Fix some resources that are never closed, close in a finally block
(#3637)
Build 1.11.2-13.20.0.2216:
cpw:
Bypass forge chunk cache if it's configuratively disabled
(cherry picked from commit 9fe6385)
Build 1.10.2-12.18.3.2215:
cpw: Bypass forge chunk cache if it's configuratively disabled
Build 1.11.2-13.20.0.2214:
Choonster.2010:
Fix Biome#getSpawnableList returning an empty list for non-vanilla
EnumCreatureTypes (#3611)
Build 1.11.2-13.20.0.2213:
williewillus: Skip first baking in ModelLoader (#3621)
Build 1.11.2-13.20.0.2211:
diesieben07: Allow block to specify their type for AI pathfinding (#3546)
Build 1.11.2-13.20.0.2210:
ichttt: Fix #3576 Unnecessary warning about totem being renamed (#3614)
liach: Removed an unsafe usage of `EntityMinecart.getType()` (#3592)
bs2609: Fix DungeonHooks method to use correct type (#3587)
bs2609: Fix ContainerRepair patch to prevent NPE (#3553)
modmuss50: Add Iron Nugget to OreDictionary (#3571)
JDLogic: Add missing patch to ItemStack isItemStackEqual (#3577)
tehgeek: Improve performance of inserting into inventory wrappers (#3622)
bs2609: Fix vanilla bug MC-98707 (#3565)
Build 1.10.2-12.18.3.2209:
JDLogic:
[1.10.x] Fix ItemHandlerHelper canStack methods not checking
capabilities (#3105)
Build 1.11.2-13.20.0.2208:
molecularphylo: Fix null check in BrewingRecipeRegistry (#3584)
williewillus: Fix IItemHandler's IStorage using nulls (#3580)
bs2609: Fix and clean up ItemBow.onPlayerStoppedUsing() patch (#3555)
bs2609: Small cleanup for PlayerInteractEvent (#3563)
tehgeek: Clean up null issues, add more annotations (#3590)
tehgeek: Fix #3596 Close jar sources safely in Java 6 (#3597)
williewillus: Fix milk not working on anything at all (#3574)
Build 1.11.2-13.20.0.2207:
tehgeek: Use travis_wait to extend the timeout on gradlew build (#3610)
bs2609: Fix a couple more ItemStack null checks (#3586)
Build 1.11.2-13.20.0.2206:
fry:
Fix super call to ItemOverrideList constructor inside
AnimationItemOverrideList, fixes #3264.
Build 1.11.2-13.20.0.2205:
fry: Added caching for baked vanilla models, fixes #3594.
Build 1.11.2-13.20.0.2204:
williewillus: Fix horse cap patch being reapplied in the wrong place (#3609)
Build 1.11.2-13.20.0.2203:
tehgeek:
Add .travis.yml (#3598)
* Add .travis.yml
* fix --refresh-dependencies
* try java 8
* add build with stracktrace
* Fix running test
* try building with java 6
* try using simplified init.gradle
* Revert "try using simplified init.gradle"
This reverts commit e56041e794e3b8c13453245eb2605118e4ac68ce.
* Revert "try building with java 6"
This reverts commit 51795385f453fdd8a0e77c632b5463d8754b1ba4.
* Fix running tests
* skip createExe task
* Test with broken debug mod
* Revert "Test with broken debug mod"
This reverts commit 3b26700582ba4f4f5477f5927b0006ef0fe85bb0.
Build 1.10.2-12.18.3.2202:
aa1ronham: Properly deobfuscate lambda expressions (#3532)
Build 1.11.2-13.20.0.2201:
LexManos: Inital 1.11 update.
LexManos: Fix tests...
Build 1.11-13.19.1.2199:
tehgeek: Fix #3561 import io.IOUtils instead of compress.utils.IOUtils (#3562)
Build 1.11-13.19.1.2198:
tehgeek: Update MCP mappings to snapshot_nodoc_20161220 (#3551)
Build 1.11-13.19.1.2197:
bs2609: [1.11] Fixes for Chunk.getBlockLightOpacity implementation (#3537)
tehgeek:
Fix some resources that are never closed, close in a finally block
(#3544)
tehgeek:
Add hook to allow any block to respond to filtered block updates like
the Observer block (#3547)
tehgeek: Add nullable annotations to IGuiHandler (#3550)
tehgeek: Properly deobfuscate lambda expressions (#3552)
Build 1.11-13.19.1.2196:
JDLogic:
[1.11] Fix ItemHandlerHelper canStack and ItemStack areTagsEqual methods
not checking capabilities (#3500)
Build 1.11-13.19.1.2195:
tehgeek:
Make NBSP character display as a space. MC-2595 (#3522)
Add easy getter for the Locale: MinecraftForgeClient.getLocale()
Build 1.11-13.19.1.2194:
bs2609:
Patch EntityPlayerSP to use location-aware version of isNormalCube
(#3494)
tehgeek:
Fix uses of uppercase "Forge" where it fails Loader.isModLoaded(modID)
(#3513)
maxanier: [1.11] Made WalkNodeProcessor consider burning blocks (#3515)
tehgeek: Fix setting the world in TileEntity.addTileEntity (#2863) (#3517)
dawn0966:
Added Oak door to Ore Dictionary Exclusion list to fix able to craft it
with any wood type (#3519)
Build 1.11-13.19.1.2193:
whs1999kr: reset repo to upstream and reapplied patches (#3434)
tehgeek: [1.11] Add memory display to loading screen (#3447)
Build 1.11-13.19.1.2192:
rock: [1.11] Added EnchantmentLevelSetEvent (#3433)
Build 1.11-13.19.1.2191:
minecrell: Register Minecraft mod container in FML loader (#3414)
Build 1.11-13.19.1.2190:
LexManos: Fix modid field name for ProjectInjector.
LexManos: Small memory optimization in Registries.
Build 1.11-13.19.1.2189:
LexManos:
Enable Enforcement of modid formatting. Must be lowercase and <= 64
characters
Build 1.11-13.19.1.2188:
LexManos: Bump version for RB.
Build 1.11-13.19.0.2187:
mezz: [1.11.x] Refine fluid placement utilities (#3509)
Build 1.11-13.19.0.2186:
LexManos:
Properly filter out annotations that are for multiple mods in the same
mod source. This prevents disabled mods from getting their proxies
injected. Also prevents mods from getting their proxies injected
multiple times. Effects the @EventBusSubscriber, @Instance, @Metadata,
@SidedProxy annotations. If the target modid is not in the annotation
data, and there are multiple mods in the source, it will attempt to find
it by matching the annotations's class names. This is a potentially
breaking change. Review your logs for "skipping" messages.
Build 1.10.2-12.18.3.2185:
LexManos: Bump version number for new Recommended Build.
Build 1.11-13.19.0.2184:
LexManos:
Prevent a crash when scheduling block updates for non-existing blocks
#3485
Build 1.10.2-12.18.2.2183:
LexManos:
Prevent a crash when scheduling block updates for non-existing blocks
#3485
Build 1.10.2-12.18.2.2182:
LexManos:
Make Container.mergeItemStack respect target slot's max size when slot
is non-empty. Closes #3498 Fix Shift clicking in Beacons with stacked
items when fuel slot is empty.
(cherry picked from commit c6bc4ec5a92b640ebe773bfa48732dfa7eb59a17)
LexManos:
Fix NPE when rendering missing mod screen with version bound
requirements. #3501
(cherry picked from commit c1e832bff09c949bfe736f492c2e4aa8004baa84)
LexManos:
Fix issue reading chunks from the network when client and server do not
agree on block count. Closes #34925
(cherry picked from commit daf21e4dcf246cfa15c362800effc5dc787ab777)
Build 1.11-13.19.0.2181:
LexManos: Make sure to log kick messages in NetworkDispatcher. Closes #3507
LexManos:
Fix NPE when rendering missing mod screen with version bound
requirements. #3501
LexManos:
Added isItemValidForSlot check to hopper extraction (#3444)
(cherry picked from commit 0348760a774ca7ed9639376baadae38e272f5bf8)
LexManos:
Fix for showing config default values twice in tooltip (#2257) (#3338)
(cherry picked from commit be73ec3d5ebd972cfacb0f255f71112a0430bc43)
LexManos:
Add null check and informative error message when client receives an
invalid update packet (#3266)
(cherry picked from commit 882e0e3bf22784d693e3816b0efeba5fbedb1a22)
LexManos:
Add ItemBlockSpecial#getBlock (#3343)
(cherry picked from commit cf26f4acbe48ee8790edc03d0b5c16c1167278ab)
LexManos:
Added gradle.properties to MDK (#3361)
The file sets the default max heap size to 3 GiB so that the
decompilation doesn't fail as often.
(cherry picked from commit 49ec3d1b9322ee2b7a1312059118173b0b3fe6d0)
LexManos:
Make SlotItemHandler override Slot.getSlotStackLimit. Closes #3497 Make
Container.mergeItemStack respect target slot's max size when slot is
non-empty. Closes #3498 Fix Shift clicking in Beacons with stacked items
when fuel slot is empty.
LexManos: Restore missed patch in World.updateComparatorOutputLevel. Closes #3495
LexManos:
Fix issue reading chunks from the network when client and server do not
agree on block count. Closes #34925
Build 1.11-13.19.0.2180:
diesieben07: Add missing pooled BlockPos retain in World patch (#3486)
mezz:
Add a way for modded GuiScreens to cancel mouse and keyboard events
(#3438)
blay09:
[1.11] Add canApplyAtEnchantmentTable to Item (#3463)
Allowing increased control of which enchantments can be put on an item
over Vanilla's hard-coded item type checks.
disabled when the item is enchantable but the enchantability requirement
is not met on lower levels.
mezz: [1.11] Add biome dictionary types for newer biomes (#3475)
bs2609: [1.11] Fix null checks in shouldCauseReequipAnimation (#3482)
Build 1.10.2-12.18.2.2179:
blay09:
Add null check and informative error message when client receives an
invalid update packet (#3266)
raoulvdberge: Add ItemBlockSpecial#getBlock (#3343)
yannick:
Added gradle.properties to MDK (#3361)
The file sets the default max heap size to 3 GiB so that the
decompilation doesn't fail as often.
Build 1.11-13.19.0.2178:
liach: Moved TextureStitchEvent.Pre to allow custom sprites for blocks (#3436)
Build 1.11-13.19.0.2177:
bs2609: Fix sky colour blending not working for render distances >16 (#3476)
Build 1.11-13.19.0.2176:
logictechcorp: Allow connectable blocks to choose what they can connect to (#3437)
Build 1.11-13.19.0.2175:
dawn0966: Changed Armor Material to use an ItemStack aware version (#3469)
Build 1.11-13.19.0.2174:
bs2609: Fix Redstone Torch memory leak (#3474)
Build 1.11-13.19.0.2173:
diesieben07: BiomeDictionary code cleanup (#3466)
Build 1.11-13.19.0.2172:
TechnicianLP: Added EquipmentChangeEvent (#3411)
Build 1.10.2-12.18.2.2171:
bs2609: Fix Redstone Torch memory leak (#3271)
Build 1.10.2-12.18.2.2170:
1vInc: Fix for showing config default values twice in tooltip (#2257) (#3338)
Build 1.11-13.19.0.2169:
marvinroesch99: Update assets to new Forge brand (#3464)
Build 1.11-13.19.0.2168:
LexManos:
First pass at exposing data fixers to modders. Each mod gets its own
version number, mods SHOULD NOT rely on other mod's fixers, just care
about yourself. Walkers can use IDataFixerData to retrieve their
version.
Build 1.11-13.19.0.2167:
williewillus: Add getSlotLimit(slot) to IItemHandler (#3445)
Build 1.10.2-12.18.2.2166:
draco18s: Added isItemValidForSlot check to hopper extraction (#3444)
Build 1.11-13.19.0.2165:
mezz: Provide access to GuiContainer location and dimensions (#3440)
kashike:
Add method to check if an Entity can trample a Block. Fixes #2510
(#2730)
cpw:
Pass along if the respawn event was the result of the end being
conquered or not (end respawning is really FUNKY code and uses death
instead of 'change dimension')
Build 1.11-13.19.0.2162:
bs2609: Clean up handling of changes to IVertexConsumer (#3458)
Build 1.11-13.19.0.2161:
bs2609: Quick fix for another ItemStack null check (#3426)
mezz: Provide access to ShapedOreRecipe width and height (#3439)
Build 1.11-13.19.0.2160:
cpw:
Fix problem with the server hanging around after forcing the client to
exit, leaving behind stale processes.
Build 1.11-13.19.0.2159:
mezz:
Fix #3432 Hopper and Dropper item moving does not exactly match vanilla
(#3442)
mezz: Fix using the wrong Pair implementation (#3449)
Build 1.11-13.19.0.2157:
mezz: Fix #3424 ItemCraftedEvent returns air when shift-clicking (#3441)
Build 1.11-13.19.0.2156:
mezz:
Cleanup some null checks and remove deprecated methods in Item and Block
(#3429)
Build 1.11-13.19.0.2155:
LexManos: Make all tests one side only, so we can test vanilla clients in dev env.
LexManos:
Insert FML packet handler into Vanilla pipelines in case modders send
FMLPacket to vanilla. Fixes #3422
LexManos: Fix max CustomPayload size, 1MB not 16MB.
Build 1.11-13.19.0.2154:
LexManos: Fix AbstractMethodException in FML Registries. Closes #3427
Build 1.11-13.19.0.2153:
shadowfacts:
Move EntityHorse capability patches to AbstractHorse (#3417)
Fixes #3409
LexManos: Fix ItemStack null check in PlayerInteractionManager
Build 1.11-13.19.0.2152:
shadowfacts: Initial annotations/nullability changes (#3392)
TechnicianLP: Remove Block.addInformation exists in vanilla (#3413)
LexManos: Fix Item transfers related to Hoppers.
Build 1.10.2-12.18.2.2151:
ohai.iChun:
Add GetCollisionBoxesEvent. Allows manipulation of the collision boxes
for moving entities and entities stuck in walls. (#3397)
Build 1.11-13.19.0.2150:
ohai.iChun:
Add GetCollisionBoxesEvent. Allows manipulation of the collision boxes
of blocks for entities. MC1.11 edition. (#3405)
Build 1.11-13.19.0.2149:
LexManos: First draft of Entity Registry re-write.
Build 1.11-13.19.0.2148:
LexManos:
Make Wither Skulls respect Block.canEntityDestroy. Closes #3404
(cherry picked from commit 6b52023a5c341420d976cb50359e2a2a4a6a9192)
Build 1.10.2-12.18.2.2147:
LexManos: Make Wither Skulls respect Block.canEntityDestroy. Closes #3404
Build 1.11-13.19.0.2146:
Bartek_s2: Added EnumHand parameter to Block.getStateForPlacement (#3402)
Build 1.11-13.19.0.2145:
LexManos:
Fix issues with ZombieVillagers Closes #3398 1.11 doesn't intertwine
zombie types anymore so our edits to split them out for custom
professions are not needed.
LexManos: Fix client side placement issue on blocks with GUIs. Closes #3399
Build 1.11-13.19.0.2144:
ezterry3:
Fix Villagers for 1.11 (#3401)
- Add cartographer registry entry
- Fix textures for the nitwit
Build 1.11-13.19.0.2143:
mezz: [1.11] Fix nullability issues around ForgeHooks and Capabilities (#3395)
Build 1.11-13.19.0.2142:
larsgerrits99:
Change OreDictionary over from "null" to the new ItemStack system.
(#3400)
Build 1.11-13.19.0.2141:
LexManos:
Do not install mod_list.json for optional mods. Classpath scanning is in
so they will still be detected
Build 1.10.2-12.18.2.2140:
LexManos:
Do not install mod_list.json for optional mods. Classpath scanning is in
so they will still be detected
Build 1.10.2-12.18.2.2139:
LexManos: Include Mercurius in installer. See Forge Forums for more info.
Build 1.11-13.19.0.2138:
LexManos: Include Mercurius in installer. See Forge Forums for more info.
Build 1.11-13.19.0.2137:
LexManos: Restore the ability to register modded TileEntities.
Build 1.11-13.19.0.2136:
mezz: Remove deprecated Fluid stuff
mezz: Implement fluid item capabilities without item swapping
Build 1.11-13.19.0.2135:
LexManos:
Make EntityShulker fire EnderTeleportEvent. Closes #3383
(cherry picked from commit d48985fafaed6de6f09136b999ca8aa44184a7b9)
LexManos: Fixed damage bar color. Closes #3389
LexManos: Fix ItemStackHandler's constructor ignoring size. Closes #3386
shadowfacts: Fix crafting causing crash (#3388) Closes #3387
Build 1.10.2-12.18.2.2134:
LexManos: Update installer to 1.5, and fix local buildscript issues.
LexManos: Make EntityShulker fire EnderTeleportEvent. Closes #3383
Build 1.11-13.19.0.2133:
LexManos:
Added event to allow modification of player visibility to mobs/AI
(#3382)
(cherry picked from commit 0a5ef64d6ea96fe85d7c62107081ced649e6a3e9)
Build 1.10.2-12.18.2.2132:
maxanier:
Added event to allow modification of player visibility to mobs/AI
(#3382)
Build 1.11-13.19.0.2131:
LexManos: Apply missed patch to WorldProvider.
mezz: [1.11] Fix initCapabilities for ItemStacks (#3379)
LexManos: Disable capabilities for empty ItemStacks.
LexManos: Restore another missing patch in WorldProvider.
Build 1.11-13.19.0.2130:
LexManos:
Fix build.gradle problems: Installer missing url.png UploadArchives
erroring on local systems due to missing changelog Adding branch name
improperly.
Build 1.11-13.19.0.2129-1.11.x:
LexManos: Fix localizations not loading correctly in legacy resource packs.
Build 1.11-13.19.0.2128-1.11.x:
LexManos: Fix FurnaceRecipy registration.
Build 1.11-13.19.0.2127-1.11.x:
LexManos: Fixed test cases for 1.11 changes.
Build 1.10.2-12.18.2.2125:
cpw: Update to 20161111 mcp names
cpw: regenerate entitylivingbase patch
Build 1.10.2-12.18.2.2124:
mezz: Improve error message from crashes during loading (#3362)
Build 1.10.2-12.18.2.2123:
draco18s: Added events for crop growth (#3320)
Build 1.10.2-12.18.2.2122:
maxanier: Add support for custom entity selectors in commands (#3356)
Build 1.10.2-12.18.2.2121:
latvianmodder: Added PermissionAPI (#3155)
Build 1.10.2-12.18.2.2120:
Choonster.2010: Add hand argument to BlockEvent.PlaceEvent (#3221) (#3270)
Build 1.10.2-12.18.2.2119:
jezzadabomb:
Fixes #3237 and #2752. (#3347)
* Fix #3237 by correctly utilising the keepLooking argument.
* Explain within SimpleNetworkWrapper's javadoc that the execute of the
handler isn't on the main Minecraft thread.
Build 1.10.2-12.18.2.2118:
draco18s: Made default slot implementation respect inventory stack size limit.
Build 1.10.2-12.18.2.2117:
aa1ronham: Fixed Block.setBedOccupied ignoring 'occupied' parameter
Build 1.10.2-12.18.2.2116:
raoulvdberge:
Add Item#getNBTShareTag (#3342)
* Add Item#getNBTShareTag