-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1613 lines (1324 loc) · 48.1 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
Build: 1.14.4-28.1.61 - Fri Oct 18 13:33:03 GMT 2019
cpw:
Expose the registrationchange event to simple channel (not that anyone
should care, but who knows?)
Also, Context.getNetworkManager should have been public. Derp.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.60 - Fri Oct 18 04:03:38 GMT 2019
cpw:
Fix clientside chunk load event spam. Was an offset patch.. Also fire
unload on the client side too.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.59 - Fri Oct 18 00:28:54 GMT 2019
cpw:
Add in an event to expose the standard MC channel stuff to network event
channels that care about such things. Mods using simplechannel don't
need to care.
Also, put a sync wrapper around crashreportextender, so it doesn't die
sometimes randomly during startup.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.58 - Thu Oct 17 23:13:24 GMT 2019
David Quintana:
Fix vanilla models with parents not loading properly from forge
blockstates.
12281102+Aeltumn:
Fix #6244 RightClickBlock#getUseBlock and #getUseItem being ignored
(#6246)
=========
Build: 1.14.4-28.1.56 - Tue Oct 15 22:01:50 GMT 2019
bl4ckscor33:
Fix shear sound not playing (#6202)
ohai.iChun:
Fix error logging in FMLUserdevLaunchProvider.setup (#6206)
jojohostert:
Allow mods actually to have their own usable config gui (#6208)
tehgeek:
Fixed MC-162953 bounds checks in `NativeImage` (#6216)
ichttt:
Fixed loading error/warning screen not showing (#6218)
ichttt:
Include a profile icon for the launcher json (#6222)
=========
Build: 1.14.4-28.1.50 - Tue Oct 15 21:54:54 GMT 2019
ichttt:
Fix some config checks still using the old fields (#6193)
=========
Build: 1.14.4-28.1.49 - Tue Oct 15 21:38:20 GMT 2019
philipphuettig:
Add onCropsGrow event to KelpTopBlock (#6171)
=========
Build: 1.14.4-28.1.48 - Tue Oct 15 21:31:49 GMT 2019
JDLogic:
Fix mod info panel rendering incorrectly on some systems with HiDPI
displays (pesky macs) (#6170)
=========
Build: 1.14.4-28.1.47 - Mon Oct 14 17:40:45 GMT 2019
usfirepilot123:
Re-add PlayerGiveXpEvent & PlayerChangeLevelEvent (#6165)
=========
Build: 1.14.4-28.1.46 - Mon Oct 14 17:33:54 GMT 2019
dev:
Skip background for hidden effect instances (#6197)
=========
Build: 1.14.4-28.1.45 - Sun Oct 13 18:21:39 GMT 2019
cpw:
Bump modlauncher version to 4.1
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.44 - Fri Oct 11 03:11:02 GMT 2019
wynprice999:
Fixed IModelData not being cleared when tile entity is removed (#6115)
williewillus:
Allow modded IParticleRenderTypes to be rendered (#6221)
=========
Build: 1.14.4-28.1.42 - Thu Oct 10 20:03:36 GMT 2019
tterrag:
Better sanity checks in ModelDataManager
=========
Build: 1.14.4-28.1.41 - Thu Oct 10 18:23:36 GMT 2019
williewillus:
Make customClientFactory optional again (#6191)
=========
Build: 1.14.4-28.1.40 - Mon Oct 07 22:18:52 GMT 2019
David Quintana:
Fix forge blockstates and custom model loading (#6154)
* Reimplement forge blockstates variant through the use of a
pseudo-model that handles the model loading, retexturing, custom data,
etc. on behalf of the blockstates loader. This model gets injected into
the model registry with an autogenerated unique name, to not collide
with other model locations.
* Fix model loaders not being properly initialized by calling the reload
method from the loader register function. In 1.12, registering a reload
listener caused the listener to be called right away from the register
method. This is not true anymore.
=========
Build: 1.14.4-28.1.39 - Sat Oct 05 21:04:32 GMT 2019
cpw:
Add a super early GUI for showing pre-game launch messages from FML.
NOTE: this cannot show on MAC because MAC can't handle off-thread GUIs
in any way shape or form, and we need the main thread to do real work.
Fix forge fading in wrongly.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.38 - Sat Oct 05 17:55:33 GMT 2019
David Quintana:
New round of fluid system fixes: (#6175)
- Fix race condition lazy-initializing flowing fluid block data.
- Fix typo in ItemTextureQuadConverter that prevents certain animated
textures from being used in the fluid bucket.
- Fix calls to onContentsChanged in FluidTank.
- Fix FluidUtil.tryEmptyContainer logic when simulating.
- Fix EmptyFluidHandler.fill returning the wrong number.
=========
Build: 1.14.4-28.1.37 - Fri Oct 04 22:37:31 GMT 2019
tterrag:
Combine all hidden mod resource packs into a single sortable pack
Fix mod datapacks sorting under vanilla
=========
Build: 1.14.4-28.1.36 - Fri Oct 04 19:26:16 GMT 2019
cpw:
Split server and client side pack locators apart and move them to their
respective behavioural components. This should facilitate fixing the
server pack data pack ordering, as well as other new features of mod
resource packs.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.35 - Fri Oct 04 17:37:04 GMT 2019
lex:
Fix dimension types being incorrect when connecting to a non-Forge
server. Closes #6203
=========
Build: 1.14.4-28.1.34 - Fri Oct 04 11:27:27 GMT 2019
cpw:
Fix the stupid derp that broke singleplayer dims. Don't send the dim
packet to the local client - it is not needed because obviously not.
Seems to have fixed the problem. Probably infinity new bugs by this.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.33 - Fri Oct 04 06:28:27 GMT 2019
tterrag:
Move OnlyIn patches on DyeColor to SAS file
Also fix broken cobblestone stairs recipe
=========
Build: 1.14.4-28.1.32 - Fri Oct 04 05:41:48 GMT 2019
tterrag:
Expose DyeColor#colorValue, remove OnlyIn from all DyeColor methods
=========
Build: 1.14.4-28.1.31 - Thu Oct 03 01:54:25 GMT 2019
cpw:
Properly propagate the DimensionType information from server to client
at client connection time. This means the client now knows about the
dimensiontype properly and can access the ModDimension information on
the client.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.30 - Wed Oct 02 03:01:13 GMT 2019
mattmess1221:
Move opening initial screen to after startup and events are enabled
(#6139)
This allows events to be fired for the initial opening of the main menu
Also fixes MC-145102
rubensworks:
Fix FluidTank with empty contents throwing error if drained (#6196)
=========
Build: 1.14.4-28.1.28 - Wed Oct 02 02:54:31 GMT 2019
wynprice999:
Changed all calls of `BlockState#getSoundType` to use the sensitive
version. (#6120)
draco18s:
Patch Sweet Berry Bush to have Crop Growth Event Hook (#6094)
=========
Build: 1.14.4-28.1.26 - Sat Sep 28 22:21:22 GMT 2019
tterrag:
Allow structure processors to process entities
=========
Build: 1.14.4-28.1.25 - Sat Sep 28 20:06:14 GMT 2019
cpw:
Remove forced ANSI terminal - it breaks the Eclipse terminal output. As
a result, we can now support coloured log output again, by default.
Regen run configs to get the change (you should do this every update,
you know :D)
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.24 - Fri Sep 27 21:57:32 GMT 2019
tterrag:
Make patched-in StairsBlock constructor public
Also fix supplier generic being too narrow in DeferredRegister#register
=========
Build: 1.14.4-28.1.23 - Fri Sep 27 21:45:59 GMT 2019
cpw:
Integrate modlauncher changes for mixin.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.22 - Wed Sep 25 22:03:41 GMT 2019
tterrag:
Usability improvements to RegistryObject/DeferredRegister
tterrag:
Fix new flower pot ctor not being usable with deferred register
=========
Build: 1.14.4-28.1.20 - Wed Sep 25 01:06:00 GMT 2019
tterrag:
Add constructor to StairsBlock that accepts a state supplier
=========
Build: 1.14.4-28.1.19 - Tue Sep 24 01:43:11 GMT 2019
lex:
Fix server jar manifest path.
=========
Build: 1.14.4-28.1.18 - Mon Sep 23 17:19:28 GMT 2019
tterrag:
Fix sea level not being available on client, move hook to Dimension
=========
Build: 1.14.4-28.1.17 - Mon Sep 23 03:40:09 GMT 2019
tterrag:
Add template arg to StructureProcessor#process
=========
Build: 1.14.4-28.1.16 - Mon Sep 23 02:47:09 GMT 2019
lex:
Fix timezone issue with the installer.
=========
Build: 1.14.4-28.1.15 - Mon Sep 23 00:30:41 GMT 2019
lex:
Bump binpatcher and jarsplitter versions to address Java differences on
older JDKs.
=========
Build: 1.14.4-28.1.14 - Sun Sep 22 20:48:40 GMT 2019
tterrag:
Fix type bound on GameRegistry.findRegistry being too narrow
tterrag:
Fix jigsaw blocks not mirroring properly
tterrag:
Allow modded dimensions to customise World#getSeaLevel
=========
Build: 1.14.4-28.1.11 - Sat Sep 21 19:59:46 GMT 2019
tterrag:
Add IExtensibleEnum#init, extend FillerBlockType/PlacementBehaviour
=========
Build: 1.14.4-28.1.10 - Wed Sep 18 01:42:29 GMT 2019
cpw:
Fixed the problem where an error would cause the main thread to continue
even though there were still parallel threads running. Also, handle
exceptions in the AutomaticEventSubscriber rather than leaking them to
the Parallel processor.
Actually closes #6148 Signed-off-by: cpw <[email protected]>
cpw:
Tag the deprecation of DeferredWorkQueue. I think this is causing
confusion as to scope. Its functionality will be tied to the events in
future - so mods can request the deferred work through methods on the
Mod Lifecycle events directly. The API will be coming soon.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.8 - Tue Sep 17 23:59:35 GMT 2019
tterrag:
Make FlowerPotBlock extensible and reusable for mods
- Change static lookup map to an instance variable
- Add an instance variable for the "empty pot" for the current block
- Keep one instance of the lookup map between the empty pot and all its
full versions
- Convert everything to use delegates
=========
Build: 1.14.4-28.1.7 - Tue Sep 17 21:39:44 GMT 2019
Bward7864:
Post tag event directly from reloader thread (#6164)
=========
Build: 1.14.4-28.1.6 - Tue Sep 17 00:16:04 GMT 2019
cpw:
Some tweaks around the code base. A functional consumer for networking -
return a bool from your consumer function, rather than setPacketHandled.
Tweak the server modloading behaviour to try and be a bit clearer that a
mod errored.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.1.5 - Mon Sep 16 21:04:39 GMT 2019
Bward7864:
Update furnace fuels to not recreate it's list every query, and update
when tags are reloaded. Add Tag update events. (#6140)
=========
Build: 1.14.4-28.1.4 - Mon Sep 16 20:37:06 GMT 2019
17338378+Nightenom:
Maintain default behavior for Item#canPlayerBreakBlockWhileHolding()
(#6128)
=========
Build: 1.14.4-28.1.3 - Mon Sep 16 20:21:40 GMT 2019
Unnoen:
Update README badges to fix wrong version. (#6141)
=========
Build: 1.14.4-28.1.2 - Mon Sep 16 20:03:26 GMT 2019
mrcrayfish:
Reimplemented "MouseEvent" as RawMouseEvent for 1.14.X (#6144)
=========
Build: 1.14.4-28.1.1 - Thu Sep 12 18:10:59 GMT 2019
diesieben07:
Fix patch for vanilla spawning in WorldEntitySpawner (#6130)
=========
Build: 1.14.4-28.1.0 - Thu Sep 12 16:14:54 GMT 2019
lex:
Fix Entity.getPersistentData function name. Closes #6131 Bump spec
version for first 1.14.4 RB.
=========
Build: 1.14.4-28.0.107 - Thu Sep 12 16:01:53 GMT 2019
JDLogic:
Fix ParticleFactoryRegisterEvent not firing (#6126)
=========
Build: 1.14.4-28.0.106 - Thu Sep 12 15:43:48 GMT 2019
David Quintana:
Minor fixes to the fluids (#6150)
* Fixed vanilla rendering of fluids to take into account the alpha bits
of the color, and fix usages accordingly.
* Fixed missing texture derp.
=========
Build: 1.14.4-28.0.105 - Wed Sep 11 14:00:40 GMT 2019
David Quintana:
Some (sadly breaking) improvements to the Fluid API (#6110)
* Some (sadly breaking) improvements to the API, after feedback and
concerns provided by users:
- Moved calculation of the translation key to the FluidAttributes
constructor, so that builders can be shared between still & flowing
sub-fluids.
- Moved biome-based coloring to a dedicated FluidAttributes.Water
variant, which is not used by default.
- Added logic to automatically gather fluid textures into the list of
textures to bake.
- Patched BucketItem and FlowingFluidBlock to avoid eager access to the
fluid objects.
- Added a ForgeFlowingFluid class, as a more user-friendly way to
construct a new FlowingFluid.
=========
Build: 1.14.4-28.0.104 - Tue Sep 10 23:02:31 GMT 2019
lex:
Delay Block loot table name generation until needed, as calling early
will result in an empty name as the block is not registered yet.
lex:
Add new DeferredRegistry helper, and change RegistryObject to update
when overrides are registered.
=========
Build: 1.14.4-28.0.102 - Mon Sep 09 22:30:19 GMT 2019
lex:
Fix slimes splitting more times then they should. Closes #6138
=========
Build: 1.14.4-28.0.101 - Mon Sep 09 03:32:59 GMT 2019
tterrag:
Fix a couple places not calling forge getLightValue
=========
Build: 1.14.4-28.0.100 - Sun Sep 08 06:23:38 GMT 2019
cpw:
Fix problem with network connections timing out frequently. Turns out
there's a race condition - and the extra work forge does causes it to
happen much more frequently than vanilla (though I'm sure it's a vanilla
issue). Closes #6124, #5767 and probably lots more.
Signed-off-by: cpw <[email protected]>
tterrag:
Fix SCommandListPacket underflowing buffer when encountering a missing
argument type
tterrag:
Remove StructureArgument to work around vanilla issue, clean up custom
arguments
tterrag:
Fix vanilla typo causing errors when client is missing entity attributes
tterrag:
Properly fix missing attribute issue, add vanilla bug ID
=========
Build: 1.14.4-28.0.95 - Sat Sep 07 05:10:08 GMT 2019
tterrag:
Make /locate command support modded structures
=========
Build: 1.14.4-28.0.94 - Sat Sep 07 03:42:47 GMT 2019
tterrag:
Make STRUCTURE_FEATURE registry a slave map of the FEATURE registry
Also convert Feature.STRUCTURES to a slave map
=========
Build: 1.14.4-28.0.93 - Thu Sep 05 22:38:25 GMT 2019
lex:
Fix REGISTER packet encode/decode issues. Changed ForgeConfig values to
return the default value if the config is not loaded, and exposed the
value objects as a internal config.
=========
Build: 1.14.4-28.0.92 - Thu Sep 05 05:33:28 GMT 2019
lex:
Fix naming conflicts with official names.
=========
Build: 1.14.4-28.0.91 - Wed Sep 04 02:59:06 GMT 2019
lex:
Fix item used stat not triggering properly on last item in the stack.
=========
Build: 1.14.4-28.0.90 - Wed Sep 04 01:51:34 GMT 2019
lex:
Add a bunch of tags from the omnibus. Fix test imports. And update
patches for line numbers.
bl4ckscor33:
Add spawn reason to spawn events (#6096)
=========
Build: 1.14.4-28.0.88 - Tue Sep 03 21:50:35 GMT 2019
6596492+yrsegal:
Add collisionExtendsVertically hook to allow modded blocks that extend
collision into the block above similar to fences. (#6092)
=========
Build: 1.14.4-28.0.87 - Tue Sep 03 21:41:54 GMT 2019
danielgoossens:
Fixed PlayerInteractEvent.LeftClickBlock useItem/useBlock (#6045)
=========
Build: 1.14.4-28.0.86 - Tue Sep 03 21:31:04 GMT 2019
danielgoossens:
Readded IForgeItem#getHighlightTip hook. (#6036)
=========
Build: 1.14.4-28.0.85 - Tue Sep 03 20:20:52 GMT 2019
goto.minecraft:
Added gravity as attribute to Entities (#5630)
=========
Build: 1.14.4-28.0.84 - Tue Sep 03 19:59:53 GMT 2019
ichttt:
Fix CME on chunk unload in FarmlandTicketManager (#5998)
=========
Build: 1.14.4-28.0.83 - Sun Sep 01 18:42:33 GMT 2019
cpw:
Add a modfolderfactory. Fix up login payload exposure.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.82 - Sun Sep 01 15:33:27 GMT 2019
cpw:
Peel IModLocator into the SPI package and extract a small IModFile
interface as well. This allows building external IModLocator
implementations.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.81 - Sat Aug 31 17:57:15 GMT 2019
cpw:
Move indexFor and biConsumer into FMLHandshakeHandler and expose them
publicly, so mods can add additional login messages. Closes #6087
Signed-off-by: cpw <[email protected]>
faj10:
Added getters for FMLPlayMessages.SpawnEntity
tobias.hotz:
move default log level for debug file to debug instead of trace, and
remove millis from console and GUI. Also remove unused config xmls
cpw:
Add in MC REGISTER nonsense. Shut up #5730
Tweak network a bit to fix initialization order stupidity. (Constants
don't load classes!)
Signed-off-by: cpw <[email protected]>
cpw:
Add in some client only player connectivity events. Closes #5536
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.76 - Sat Aug 31 12:15:17 GMT 2019
David Quintana:
Hookup BlockEvent.FluidPlaceBlockEvent (#6103)
=========
Build: 1.14.4-28.0.75 - Fri Aug 30 03:42:51 GMT 2019
cpw:
Update libs to 1.0 versions, bump grgit, and fix tag search behaviour
that resulted.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.74 - Thu Aug 29 19:09:49 GMT 2019
David Quintana:
Fluid rework derp fixes. (#6098)
* Fix nulls returning from non-null methods, and null-check of
non-nullable values.
* Fix missed computation of the isEmpty flag in FluidStack
* Cleanup getAmount/isEmpty calls.
* Remove redundant suppliers. That info is readily available from the
vanilla Fluid / FluidState.
=========
Build: 1.14.4-28.0.73 - Thu Aug 29 04:34:22 GMT 2019
daemon.umbra:
Change fml.modloading.brokenfile.optifine to not imply that Forge is
responsible for Forge-Optifine compatibility. (#6080)
ichttt:
Fix Digging particle sometimes using the wrong block pos to get
additional model data (#6077)
williewillus:
Minor model system cleanup/documentation (#6089)
=========
Build: 1.14.4-28.0.70 - Thu Aug 29 04:28:28 GMT 2019
ichttt:
Add a config comment that lists the available constants of enums (#6079)
=========
Build: 1.14.4-28.0.69 - Thu Aug 29 04:18:57 GMT 2019
bl4ckscor33:
Restore PotionShiftEvent (#6042)
=========
Build: 1.14.4-28.0.68 - Thu Aug 29 04:13:38 GMT 2019
danielgoossens:
Added new InputEvent.MouseScrollEvent, fixes #5811 (#6037)
=========
Build: 1.14.4-28.0.67 - Thu Aug 29 03:34:14 GMT 2019
luasmrks:
Strip side annotations from CropsBlock.getSeedsItem (#6013)
Bward7864:
Add Villager Trading Events (#6016)
=========
Build: 1.14.4-28.0.65 - Thu Aug 29 03:14:27 GMT 2019
wynprice999:
Updated constants to 1.14 (#6012)
46117728+valoeghese:
Added hook to allow biomes to specify custom river variants. (#5969)
=========
Build: 1.14.4-28.0.63 - Thu Aug 29 01:42:25 GMT 2019
williewillus:
Add particle factory registration event (#6018)
=========
Build: 1.14.4-28.0.62 - Thu Aug 29 01:30:04 GMT 2019
lex:
Recipe system cleanup. (#6014)
David Quintana:
Fluid API rework (#5983) - Moved forge fluids into FluidAttributes
companion object to the vanilla Fluid. By gigaherz - Redesigned the
Fluid API to be closer to the Items API. By King Lemming Co-authored-by:
King Lemming <[email protected]>
David Quintana:
Fix license headers so `gradlew build` is happy.
David Quintana:
Make FluidStacks non-nullable, and implement some TODOs.
=========
Build: 1.14.4-28.0.58 - Thu Aug 29 01:12:54 GMT 2019
bjfccb:
Fix regular arrows giving off particles after a world reload (MC-107941)
(#6061)
ichttt:
Fix coremod not redirecting to the correct method (#6078)
=========
Build: 1.14.4-28.0.56 - Wed Aug 28 19:59:19 GMT 2019
lex:
Fix blocks being placed in adventure mode. Closes #6085 Add early error
for setting invalid world directory. Closes #6084 Fix PlayerTickEvent
not firing when dead, even if player isn't removed from world yet.
Closes #6074 Fix PlayerDestroyItemEvent not firing for some cases.
Closes #6067
=========
Build: 1.14.4-28.0.55 - Tue Aug 20 22:40:50 GMT 2019
lex:
Fix Javac generics breakage.
lex:
Sort server.properties while writing.
lex:
Add Argument serializer for ModIdArgument. EnumArgument can't as vanilla
doesn't support extra data.
lex:
Prevent worlds from unloading while players are in out-of-world states
by tracking all worlds references by every player in the server's player
list.
=========
Build: 1.14.4-28.0.51 - Tue Aug 20 02:46:20 GMT 2019
lex:
Fix Configs not generating correctly on first load Closes #6069
lex:
Fix chunk load failure when entering End portal Closes #6068
=========
Build: 1.14.4-28.0.49 - Thu Aug 15 18:04:06 GMT 2019
williewillus:
Add hook to load custom mrls/rls not attached to a block or item.
(#6010)
=========
Build: 1.14.4-28.0.48 - Thu Aug 15 17:35:07 GMT 2019
bl4ckscor33:
Cover more cases for RightClickBlock event and restore onItemUseFirst
(#6009)
=========
Build: 1.14.4-28.0.47 - Thu Aug 15 17:17:36 GMT 2019
kirderf4:
Make DimensionManager.SavedEntry save sky light consistently (#6019)
=========
Build: 1.14.4-28.0.46 - Wed Aug 14 23:13:25 GMT 2019
lex:
Fix extract inheritance not using proper classpath and update
buildscript for FG asm changes.
=========
Build: 1.14.4-28.0.45 - Mon Aug 05 12:56:59 GMT 2019
cpw:
Grrr. Stupid error. Sorry lex: I fixed it.
Signed-off-by: cpw <[email protected]>
cpw:
Bump modlauncher to 3.2.x. Add a sender modid and document IMC. Closes
#5746
Signed-off-by: cpw <[email protected]>
cpw:
Move fml's PlayerEvent and TickEvent to forge. Update `import
net.minecraftforge.fml.common.gameevent.PlayerEvent;` to `import
net.minecraftforge.event.entity.player.PlayerEvent;` and `import
net.minecraftforge.fml.common.gameevent.TickEvent;` to `import
net.minecraftforge.event.TickEvent;`
Signed-off-by: cpw <[email protected]>
cpw:
Actually reload config when it changes on disk. Closes #5541 and #5959
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.41 - Mon Aug 05 01:19:19 GMT 2019
cpw:
Turned minecraft into a proper Mod, with a "dummy" language provider.
Also fixed the "translations" not being available early if an exception
occurs by force loading the forge and MC ones. Closes #5984
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.40 - Sat Aug 03 01:48:54 GMT 2019
daemon.umbra:
Fix a crash I caused by misunderstanding formatToString (#6007)
=========
Build: 1.14.4-28.0.39 - Sat Aug 03 01:03:37 GMT 2019
lex:
Fix userdev setup by moving SAS concept to FG.
=========
Build: 1.14.4-28.0.38 - Fri Aug 02 21:13:51 GMT 2019
mods.itsmeow:
Add piston events (#5798)
=========
Build: 1.14.4-28.0.37 - Fri Aug 02 21:07:42 GMT 2019
des.herriott:
Make ParticleManager.IParticleMetaFactory public (#5926)
mods.itsmeow:
Fix AT for EntitySpawnPlacementRegistry.register
=========
Build: 1.14.4-28.0.35 - Fri Aug 02 21:01:02 GMT 2019
jojohostert:
Add button to open mods folder (#5986)
=========
Build: 1.14.4-28.0.34 - Fri Aug 02 20:50:19 GMT 2019
mh:
Fixed PlayerInteractEvents not working (#5976)
daemon.umbra:
Change ModLoadingException to display ModID instead of ModInfo instance
identifier. (#5999)
=========
Build: 1.14.4-28.0.32 - Fri Aug 02 20:44:09 GMT 2019
Gamebuster19901:
Fix LazyOptional throwing NPE to consumers when owners null. (#5772)
Gamebuster19901:
Fixed Buttons in the error screen are incorrectly rendered if they are
extremely long Closes #5687 (#5924)
=========
Build: 1.14.4-28.0.30 - Fri Aug 02 20:37:17 GMT 2019
lex:
Make Villager profession unlocalized name use modids when not
'minecraft' Closes #5977 Fixed trees able to be generated through water.
Closes #6000 Change Block#toString to use getRegistryName instead of
getNameForObject Closes #5937 Allow Cooking Recipes to deserialize
results with stack sizes. Closes #5960
=========
Build: 1.14.4-28.0.29 - Thu Aug 01 05:43:58 GMT 2019
lex:
Fixed DimensionType.getRegistryName() returning null Closes #5992 Fixed
RegisterDimensionEvent not firing for new worlds. Closes #5987
=========
Build: 1.14.4-28.0.28 - Thu Aug 01 04:15:51 GMT 2019
lex:
Introduce new Side Annotation Stripper system to semi-automate the
shipment of Sided methods and cleanup patches. New forge:checkSAS task
to validate this config file. Closes #5995
=========
Build: 1.14.4-28.0.27 - Tue Jul 30 23:42:43 GMT 2019
ichttt:
Move world unload patch to tick function to prevent duplicate unloading,
fix log message in dim manager, fix javadoc for unload method (#5964)
=========
Build: 1.14.4-28.0.26 - Tue Jul 30 23:36:37 GMT 2019
bl4ckscor33:
fix melon and pumpkin seeds being peaceable on more than just farmland
(#5980)
=========
Build: 1.14.4-28.0.25 - Tue Jul 30 23:30:21 GMT 2019
thecheaterpaul:
Fixed possible ClassCastException with dye-able armor. (#5985)
=========
Build: 1.14.4-28.0.24 - Tue Jul 30 00:20:04 GMT 2019
cpw:
Fix naming for dev launch providers - they're in MCP..
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.23 - Mon Jul 29 01:10:50 GMT 2019
cpw:
Register a config command. Currently one subcommand: showfile, which
when passed a modid and a type (CLIENT, COMMON or SERVER) will display a
link in the caller's chat to open that file in the OS file viewer of
choice.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.22 - Sun Jul 28 17:45:41 GMT 2019
cpw:
Load default configs from the defaultconfig directory by default. (Can
be overridden in the fml.toml config file if desired).
Will load any type of config tracked file from there - client, common,
server or custom tracked file. This means you can ship defaults for your
pack in a defaultconfig directory. I am thinking about ways to force a
specific config override for an existing config.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.21 - Sat Jul 27 16:48:19 GMT 2019
cpw:
Fix vanilla bug that hardcore death doesn't clean up properly, leaving a
running server and a broken GUI. Vanilla bug MC-148865
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.20 - Sat Jul 27 09:35:20 GMT 2019
lex:
Fixed network ticking player entity while it is dead. And explicitly
prevent overworld from unloading. Closes #5978
=========
Build: 1.14.4-28.0.19 - Sat Jul 27 00:02:37 GMT 2019
cpw:
Crash report extended to show ModLauncher FML and Forge data.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.18 - Fri Jul 26 04:35:17 GMT 2019
cpw:
Fix potion transformer to look up the right name depending on context.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.17 - Fri Jul 26 03:02:48 GMT 2019
cpw:
Added a coremod, shush, don't tell Lex.
Seriously, this is how to do targeted changes to specific classes.
In this case, adding a fieldtomethod redirect for EffectInstance.potion
to allow substitution.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.16 - Fri Jul 26 01:00:15 GMT 2019
lex:
Fix @ObjectHolderRegistry not properly detecting vanilla class level
references. Closes #5958
lex:
Fix Slimes not splitting on death Closes #5973
=========
Build: 1.14.4-28.0.14 - Wed Jul 24 18:15:36 GMT 2019
lex:
Fixed missed patch causing blocks to not dropping EXP and BreakEvent to
not fire.
=========
Build: 1.14.4-28.0.13 - Tue Jul 23 02:23:28 GMT 2019
David Quintana:
Fix & Improve state comparison when checking vanilla block replacements
(#5922)
=========
Build: 1.14.4-28.0.12 - Mon Jul 22 22:45:51 GMT 2019
lex:
Keep player cap data until they have revived. Closes #5956
=========
Build: 1.14.4-28.0.11 - Sun Jul 21 01:04:23 GMT 2019
cpw:
Fix datafixer exception catch: Closes #5951
Signed-off-by: cpw <[email protected]>
cpw:
Fix objloader registering at wrong time. Closes #5847. Added test class
as suggested in the issue.
Note: most tests are commented out at the present time, pending rework.
Tests that work, work.
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.9 - Sat Jul 20 23:38:35 GMT 2019
Barteks2x:
Fix RegistryObject when used with generic registry entry classes
cpw:
Realms' removal has removed the need for additional jar transformation.
Signed-off-by: cpw <[email protected]>
cpw:
Fix error when ModsDiscoverer visits a non existent mods dir.
Closes cpw/modlauncher#30
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.5 - Sat Jul 20 23:20:18 GMT 2019
cpw:
Make I18N format errors less spammy, also remove single apostrophes from
current translations in en_us.json. Other langs may still have problems.
Closes #5952 Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.4-28.0.4 - Sat Jul 20 21:55:28 GMT 2019
jojohostert:
Fix spam during startup (#5957)
=========
Build: 1.14.4-28.0.3 - Sat Jul 20 19:59:31 GMT 2019
ichttt:
Fix forge 1.14.4 startup in obfed enviroment (#5955)
=========
Build: 1.14.4-28.0.2 - Sat Jul 20 16:06:15 GMT 2019
thaun1:
Updated Example Version Range for 1.14.4 (#5950)
* Updated Example Version Range for 1.14.4
* Also changed loader version and version range
=========
Build: 1.14.4-28.0.1 - Sat Jul 20 06:27:42 GMT 2019
lex:
Fix javac compile issues.
cpw:
Provisional update to 1.14.4. Missing a lot of playerinteractionmanager
patches because everything moved and I'm tired.
Fix up immediate problems.
bump to 28.
=========
Build: 1.14.3-27.0.60 - Fri Jul 19 16:08:38 GMT 2019
cpw:
Update mappings to 20190719 in prep for 1.14.4..
Signed-off-by: cpw <[email protected]>
=========
Build: 1.14.3-27.0.59 - Thu Jul 18 21:22:01 GMT 2019
github:
Remove OnlyIn Client Distribution from Effect and EffectType methods.
(#5925)
=========
Build: 1.14.3-27.0.58 - Thu Jul 18 21:15:19 GMT 2019
lex:
Change default BrewingRecipe to use an Ingredient for the input instead
of ItemStack. Closes #5944 Add AT for GameRules.register Closes #5946
Fix Forge Blockstate loader model path is inconsistent with vanilla
blockstates Closes #5892 Fix client crashing when opting not to load a
world when there's missing blocks Closes #5886
=========
Build: 1.14.3-27.0.57 - Wed Jul 17 05:38:23 GMT 2019
lex:
Fix CheckSpawn event logic for natural spawns.
=========
Build: 1.14.3-27.0.56 - Tue Jul 16 23:03:04 GMT 2019
lex:
Fixed item breaking particles not capturing current state of the
ItemStack. Closes #5934
=========
Build: 1.14.3-27.0.55 - Tue Jul 16 19:47:33 GMT 2019
ewewukek:
Fix RenderSpecificHandEvent firing with wrong hand stack (#5927)
=========
Build: 1.14.3-27.0.54 - Tue Jul 16 19:41:28 GMT 2019
mods.itsmeow:
[1.14.x] Fix text positioning issues caused by scaling loading screen
(#5932)
=========