-
Notifications
You must be signed in to change notification settings - Fork 2
/
forge-1.6.4-9.11.1.964-changelog.txt
4896 lines (3966 loc) · 452 KB
/
forge-1.6.4-9.11.1.964-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 964:
LexManos:
Bump build for gradle fixes:
Now Builds for java 1.6
Include version,json in universal
Fixed classpath issues in eclipse task.
Build 1.6.4-9.11.1.963:
luacs1998:
Update readme for ForgeGradle
Let me know if there's anything else to add or change.
luacs1998: Updated
luacs1998: Another update for eclipse users
luacs1998: Update README.txt
Build 1.6.4-9.11.1.961:
LexManos: Updated FML: MinecraftForge/FML@c2b919d339e5f63271cfb67a77235c21c5c3b80e Don't validate signatures in dev env.
Build 960:
AbrarSyed: Step 1: The Purge
AbrarSyed: update FML for gradle changes
AbrarSyed: Step 2: The Reformation
AbrarSyed: Step 3: The Rebirth
AbrarSyed: fixed versioning and stuff
AbrarSyed: added buildSrc to the gitIgnore
LexManos: Fix for new FML, and publish to maven local
LexManos: Update run configs.
LexManos:
Updated FML:
MinecraftForge/FML@e9a7660cb8961660186c7c23e61ab35f9c2dfb81 updated samples
MinecraftForge/FML@30894f7afadf5d3f3c3d5a54c3f904413d5f2309 Merge pull request #307 from AbrarSyed/master
MinecraftForge/FML@c4b8a393f90b00ad7ee4992ea4341ffb6d676abb Make the working directory the root of the eclipse workspace.
LexManos: Regenerate all patches, No functional change as added this is a formatting change only.
AbrarSyed: update build.gradle
porcariadagata: Make the gradle wrapper executable.
LexManos: Proper configuratuion name for jenkins.
LexManos: Fix build file pom closures.
Build 1.6.4-9.11.1.953:
LexManos: Fix NPE on specific tile entities when the block break event is canceled. Closes #863
LexManos: Fix NPE in FakePlayers when they are created in a purely client side environment. To remove in 1.7 as FakePlayers should be used for server side interaction with the world on a player's behalf, not for client rendering.
Build 1.6.4-9.11.1.952:
cpw:
Updated FML:
MinecraftForge/FML@23baf3a8ce58cb8306189401a60647957ccbb4c2 Actually fix the nethandler code
Update patches
Build 1.6.4-9.11.1.951:
cpw:
Updated FML:
MinecraftForge/FML@b7f34629c3c47b92ee89d72b0dc935b4997cb009 Don't try and open GUIs on the server.
cpw:
Updated FML:
MinecraftForge/FML@da72640c7ef1f44c49f7f592fbdd193622a30b40 Way to go, missing import. *sigh*
Build 1.6.4-9.11.1.949:
cpw:
Updated FML:
MinecraftForge/FML@6af42bc656dfb98972d034363352affc9e777805 Add in null protection for client/server sides of handleChat
cpw: Don't send openGui commands from the fakeplayer. Fixes thaumcraft and probably others.
Build 1.6.4-9.11.1.948:
CovertJaguar: Fix Water/Lava Fluid Localization
Build 1.6.4-9.11.1.947:
LexManos: Noop out FakePlayer.addStat.
Build 1.6.4-9.11.1.946:
cpw:
Updated FML:
MinecraftForge/FML@3d25b4e793c59a9131a441d6c7a2d80cac9cd701 Add in the ability to strip interface references for specific interfaces - this is probably mostly useful for scala scenarios where sythetic methods are generated and is not a substitute for using Optional.Method where appropriate. Closes #300
Build 1.6.4-9.11.1.945:
onibait: Add block break events based on @bloodmc's initial 1.5.2 Pull Request
onibait: Add block break events based on @bloodmc's initial 1.5.2 Pull Request
onibait: Fixed formatting
onibait:
Cleaned up patches to BlockOre and BlockRedstoneOre
Fixed trailing whitespace (it bugs me too)
Build 1.6.4-9.11.1.944:
cpw:
Updated FML:
MinecraftForge/FML@f4532410ec1dbf43ce15dfa78d07e5f7be408b08 Change a couple of warnings, as a prelude to 1.7- preinit is now required for all GameRegistry activity, and every item and block REQUIRES registration.
Build 1.6.4-9.11.1.943:
cpw:
Updated FML:
MinecraftForge/FML@8f87021b0f1ae5b277ad4d1891761b7a7ae1ab71 Fix derp with custom properties. They work now!
Build 1.6.4-9.11.1.942:
cpw:
Updated FML:
MinecraftForge/FML@bc57ff9e83803d804e9d5374d76273fcd68611f4 Fix recursive API dependency resolution. Allows nested APIs, such as BuildCraft's
Build 1.6.4-9.11.1.941:
cpw:
Updated FML:
MinecraftForge/FML@de8ab934d8ae960ebc0dede16218ca1e9e488ebc Fix up duplicate entries
Build 1.6.4-9.11.1.940:
cpw:
Updated FML:
MinecraftForge/FML@81fe1c9682234297443402a54e4b852ef49d0ba8 Add in an API marker for API type packages. This does several things: 1. Packages marked as API will generate a new "modid" (the provides) that can be depended on. 2. Packages marked as API will be searched systemwide, and anything declaring that package (even without the API marker) will get an implicit dependency on the API package. 3. The API package itself will get a soft dependency on the "owner" package.
Build 1.6.4-9.11.1.939:
LexManos: Add new recipe sorter that is called after all mods are initalized. This is disabled by default in 1.6 to not break current worlds as it may change machine's recipy outputs. Will enable by default in 1.7. Players may enable it in the forge config.
Build 1.6.4-9.11.1.938:
xcompwiz:
Adds a Check to prevent Biome Replacement
Splits the BiomeGenBase constructor to create one which takes a flag
that indicates whether to insert the biome object into the biomeList
array. The standard constructor calls the new one with the default of
true. This allows biome wrapper-objects to exist.
Build 1.6.4-9.11.1.937:
cpw:
Updated FML:
MinecraftForge/FML@dac7f590eabb326c4467dbc829b4aae1e4be2779 Modify ordering of networkmod registration and mod instantiation. This fixes VersionCheckHandler logging an incorrect failure message due to NPE.
MinecraftForge/FML@f0dc530b2833a1c89673208fe296dba5520671c1 Fix up documentation of VersionCheckHandler - it only ever accepted a String and only works on the NetworkMod annotated class
MinecraftForge/FML@243a21a353e6b7717f64008776928c7132110ddf Wrapping coremods as tweakers. Part 1.
MinecraftForge/FML@58a299aabcfadb4139f126a2d46b5247bede4185 Attempt to inject coremods as tweakers, so both can share a dependency ordering
LexManos: Format strings properly in MC's internal logger. Fixes resource pack case warnings.
Build 1.6.4-9.11.1.935:
LexManos: Updated FML: MinecraftForge/FML@bf54d4d66799f2e58944095826d0722ed0120b1f Make each mod's EventBus log a child of it's main logger.
LexManos: Fix null pointer exception in BiomeDictionary causing the ChunkManager's config to not load/save.
Build 1.6.4-9.11.1.934:
LexManos: Add wildcard versions of OreDict replacements, Closes #827
Build 1.6.4-9.11.1.933:
cpw:
Updated FML:
MinecraftForge/FML@da4337efbfa07b35f5883107768f9ba2f1b24b9b Fix up handling the new method signature data for NetworkCheckHandlers
Build 1.6.4-9.11.1.931:
cpw:
Updated FML:
MinecraftForge/FML@f92962bbbbb90c19788a5dc2eafdc2eeefdd77ce Use null to empty, so missing values work. *sigh*
Build 1.6.4-9.11.1.930:
cpw: Add in an event for zombie summoning. Allows for mods to control summoning behaviour, as well as custom summoned mob.
cpw: And remember to make the event class static *sigh*
Build 1.6.4-9.11.1.928:
cpw: And allow for tweaking baby chance as well.
cpw: And set the RIGHT variable *sigh*
Build 1.6.4-9.11.1.926:
cpw: Allow configuration of the zombie additional summoning mechanic. The vanilla mechanic is a little borked at times.
Build 1.6.4-9.11.1.925:
cpw:
Updated FML:
MinecraftForge/FML@58577775d277a4408bda510534eb36841b08ced4 Very minor style fixes
MinecraftForge/FML@96be82343c25b83dd842ada8d6e8b66eb4e4ee00 Merge pull request #280 from mc10/patch-1
MinecraftForge/FML@2714da10228020a6f2321f6c9a703f0d24fe1370 Primitive capability for tweakers to order. Add a "TweakOrder" integer property to your manifest, or accept the default of zero.
Build 1.6.4-9.11.1.924:
LexManos: Prevent session from being printed to the console, also make sure the username is not empty. Causes a lot of bugs further down the line.
Build 1.6.4-9.11.1.923:
cpw:
Updated FML:
MinecraftForge/FML@fc3e7647d2aff01146b1f5bd2ab6b57ef8e833e5 Support, and fix up, interface lists for Optional
Build 1.6.4-9.11.1.922:
LexManos: Added some missing air checks to world gen features.
Build 1.6.4-9.11.1.921:
LexManos: Fix repeated argument in CleintCommands.
Build 1.6.4-9.11.1.920:
LexManos: MinecraftForge/FML@a381874bb9c3bdeeb508bb81719b4d210eb29696 Delay sound system backend initalization to speed up startup and prevent race condition on some computers.
Build 1.6.4-9.11.1.919:
reflex_ion:
Added PlayerOpenContainerEvent and added ForgeHooks.canInteractWith
- Used to override the canInteractWith during player tick
- setResult to ALLOW/DENY as required
- Defaults to Vanilla behaviour in any other instance.
Required for LittleBlocks Mod and to Assist Gullivers Mod
Build 1.6.4-9.11.1.918:
cpw:
Updated FML:
MinecraftForge/FML@bc64ceabef76b1f4667b22ca8241b72351b44338 Optional shouldn't be constructable itself. It's purely a wrapper thing.
MinecraftForge/FML@55525f6d2eb24f42c26a291b8ce98feb4d4498c9 ModLoader is officially deprecated. It will all cease to be with 1.7.
Build 1.6.4-9.11.1.917:
cpw:
Updated FML:
MinecraftForge/FML@63ba3aa0099f43183315fb4e16f9e8e8007362f8 Add in support for Optional interfaces and methods. Be gone coremods!
Build 1.6.4-9.11.1.916:
LexManos: Fix missing patch which caused per-world storage to not be saved.
Build 1.6.4-9.11.1.915:
rhilenova: Added pre/post to player list rendering in GuiIngameForge.
rhilenova: Moved PLAYER_LIST event inside display check.
Build 1.6.4-9.11.1.914:
LexManos:
Make isItemStackDamageable() pass the stack to getMaxDamage() to use the Forge version of getMaxDamage().
Fixes display issues with mods using getMaxDamage(ItemStack) instead of the vanilla one. Closes #805
LexManos: Bump version number for todays changes.
Build 1.6.4-9.11.0.913:
ben.blank: allow blocks to choose how they handle indirect power
ben.blank: move `shouldCheckWeakPower` to Forge section
Build 1.6.4-9.11.0.912:
jrtc27: Pass arguments to install.sh and install.cmd to install.py
Build 1.6.4-9.11.0.911:
LexManos: Add cancelable EntityStructByLightningEvent, Closes #789
Build 1.6.4-9.11.0.910:
LexManos: Stack sensitive version of Item.getItemStackLimit. Closes #771
Build 1.6.4-9.11.0.909:
anthonylomeli11: Villager Trading GUI will not open if Player is sneaking.
Build 1.6.4-9.11.0.908:
LexManos: Added all the vanilla records to the ore dictionary. Closes #731
Build 1.6.4-9.11.0.907:
LexManos: Direct canApplyAtEnchantingTable through canApply Closes #740
Build 1.6.4-9.11.0.906:
LexManos: Add pre and post event to rendering Chat, allowing for placement of the chat box. Closes #733
Build 1.6.4-9.11.0.905:
LexManos: Set densityDir in BlockFluidBase's constructor, closes #737
Build 1.6.4-9.11.0.904:
LexManos: Fix placement of snow cover over metadata 6. Closes #724
Build 1.6.4-9.11.0.903:
LexManos:
Add the ability to register chat commands that only execute on the client. Works with autocomplete.
Client commands are gray when shown in the autocomplete list (when you press tab)
Closes #640
Build 1.6.4-9.11.0.902:
LexManos: Update workspace to point at launchwrapper 1.8
LexManos: Vanilla hopper should obey the IInventory contract, TileEntityHopper now takes into account IInventory.getInventoryStackLimit() when inserting items Closes #597.
Build 1.6.4-9.11.0.901:
hobos_taco:
Added ItemTooltipEvent
This event is fired at the end of ItemStack.getTooltip(EntityPlayer, boolean), which in turn is called from it's respective GUIContainer. It allows an itemstack's tooltip to be changed depending on the player, itemstack or whether the advanced information on item tooltips is being shown, toggled by F3+H.
Build 1.6.4-9.11.0.900:
cpw:
Updated FML:
MinecraftForge/FML@5265e34a350adbb762264379f0134bfa40d33eaa Fix null killing the server
Build 1.6.4-9.11.0.899:
LexManos: MinecraftForge/FML@35ab9f52b02d84592e4c7607feb6009710b2f7d9 Fix md5s for new checksums.sha1 in scala libraries.
Build 1.6.4-9.11.0.898:
cpw:
Updated FML:
MinecraftForge/FML@e356f4d713b1269825839954fe86f5312ede0fc6 Cross-modsystem compatibility fix with thanks to Mumfrey @ liteloader
MinecraftForge/FML@9b55f1f48f89a5348ac1d58622b71946f310316a Attempt at a shared modlist implementation - should allow visibility between liteloader and fml for "mod list display"
Build 1.6.4-9.11.0.897:
cpw:
Updated FML:
MinecraftForge/FML@bfc25bc5da1ff0f6fd0faf817b32a8f6d35dedc2 Add to both the classloader and the parent
Build 1.6.4-9.11.0.896:
cpw:
Updated FML:
MinecraftForge/FML@9f0f9e7288afc6cce9a425ad770a208af9e28648 Fix deobf tweaker
Build 1.6.4-9.11.0.895:
cpw:
Updated FML:
MinecraftForge/FML@ce6404fd5bb5e8e425af3bcafeaa285575bf39a3 TYPOS!!!
Build 1.6.4-9.11.0.894:
cpw:
Updated FML:
MinecraftForge/FML@8f18a3de9a02b003762dace891829ef64dfedf49 Separate deobf tweaker so it runs last. Should fix problems with cascaded tweakers expecting an obf environment.
Build 1.6.4-9.11.0.893:
cpw:
Updated FML:
MinecraftForge/FML@8e26c99de3b44d272d2fdc398e0687db17bce3b7 Add debugging for deobfuscation
MinecraftForge/FML@1d902df5814b815959165e4aa69272003f002d25 Use the negative cache in latest legacylauncher.
MinecraftForge/FML@9815d8c3793182a08fcdbd29376a3f70bff464d0 Update for launchwrapper 1.8
Build 1.6.4-9.11.0.892:
LexManos: Add wrapper exception to the new Structure ID system to point to the correct Structure.
Build 1.6.4-9.11.0.891:
LexManos: Update dev workspace for 1.6.4 ..
LexManos: Remove some side onlys on BiomeEvents that don't need them.
LexManos: Fixed typo in bounding box based ladder checks that caused potential infinite loops with entities in certian positions. Thanks Overmind for reporting it.
LexManos:
Updated FML:
MinecraftForge/FML@fc8c3bef0380d59c0842a252e4f0bd29127ee78b Update to new installer that uses xz compression and better support for non-standard jvms
Build 1.6.4-9.11.0.886:
cpw:
Updated FML:
MinecraftForge/FML@a4de22c1addf0a6b95d38e467a96f2af417c86d5 And use the parent that's actually going to be valid. *sigh*
Build 1.6.4-9.11.0.885:
CovertJaguar:
Fluid Rarity should have a default
Oops.
cpw:
Updated FML:
MinecraftForge/FML@70cffe6982b27df0ea7d8d4d8851a0c0043bb2cb Herpaderp. Make addURL accessible. *sigh*
Build 1.6.4-9.11.0.884:
cpw:
Updated FML:
MinecraftForge/FML@4a94c2c71bb4cc9644caeb06011a189989b22f87 Fix NPE when loading second single-player world
MinecraftForge/FML@0e80fcb8f716cfef5b016a73ca32ff0e2f3c3c05 Merge pull request #284 from smcv/uninit
MinecraftForge/FML@39620f1e41464f53482277dc3bcb0b9eed8ca25c Fix injection of tweaker into system
Build 1.6.4-9.11.0.883:
cpw:
Updated FML:
MinecraftForge/FML@79c39f8b7c711377f7919abd1ee6a56a339d1062 Fix classpath for launchwrapper 1.7
Build 1.6.4-9.11.0.882:
traincrazyb: Correcting SoundManager Transformer
Build 1.6.4-9.11.0.881:
cpw: Clean patch fuzz
Build 1.6.4-9.11.0.880:
cpw:
Updated FML:
MinecraftForge/FML@f6190e8752013c0d6857090ffd42559cf83809ae Update workspaces for 1.6.4
Build 1.6.4-9.11.0.879:
cpw:
Updated FML:
MinecraftForge/FML@25981706ef12654b6c2baccc80fa2298bb5afb4a Update for MC 1.6.4
MinecraftForge/FML@0950b9fc8441a2d3b022ed876f17ee5ac0c47b9c Fix up a deep crash in the early server init hanging the client
Build 1.6.3-9.11.0.878:
LexManos: Remove duplicate access transformer
LexManos: Move have handler creation up, to prevent NPE.
Build 1.6.3-9.11.0.877:
LexManos:
Updated FML:
MinecraftForge/FML@e7dd728f955aa4713fef45fea770b1f91246d712 Format the log messages through MessageFormat. Thanks CovertJaguar for the pointer.
MinecraftForge/FML@82d896a35e08be5712bdc15bdb93e5d4fc0ddd46 Make final transformers actually work on methods as well.
Build 1.6.3-9.11.0.876:
LexManos: Move the Structure data save files to per-world data folders. Vanilla saves them to the global folder which will potentially cause conflicts if two worlds generate 'Villages'. Which in the modded world is highly likely. Refer back to the long standing vanilla issue where nether 'villages' would override the overworlds villages, it's the same situation.
Build 1.6.3-9.11.0.875:
LexManos: Make MapGenStructureIO name registration functions public, Any mod that has anything extending StructureStart or StructureComponent must register there classes and create a default (no parameter) constructor.
Build 1.6.3-9.11.0.874:
LexManos: Unfinalized Item.getIconIndex(ItemStack)
Build 1.6.3-9.11.0.873:
LexManos:
Updated FML:
MinecraftForge/FML@da70cdd35a378d02db47d2aa31fb9aac87beaedc Update tweaker for new Launcher API
MinecraftForge/FML@352117fd78eec745da6c80b8d354947c4dbbbb48 Update for new installer and thank you.
MinecraftForge/FML@40a34af43105ebcb5a63ce2351ca119da5a8158e Merge branch 'master' into newtweak
MinecraftForge/FML@e77d2547ad447025729ae7f3cccaaf343c4c86f9 Update for pre-ninja 1.6.3 update
MinecraftForge/FML@34493b0d99e2cf2bdca080ff226f2dfeedb1cf51 Update for real 1.6.3 update
MinecraftForge/FML@95afc95b248ecc69bc6ffcc5a95912820d8f4066 Update mcp mod info
MinecraftForge/FML@ff75416a325717770a5cf457c859bfb0abcbe281 Update mc_versions data and commands patch and eclipse workspace
MinecraftForge/FML@8f2e67558127f16d92399ea97cbcb0df46d52e19 Update the src distro's eclipse workspace.
LexManos: Bump version for new MC version.
LexManos: Actually push the submodule update -.-
Build 1.6.2-9.10.1.871:
cpw:
Updated FML:
MinecraftForge/FML@81328b6684c5127427153807b5e498c2efefb96b Add in support for using a mirror list and provide checksums for packed download of libs
Build 1.6.2-9.10.1.870:
cpw:
Revert "Added a RenderType that allows Map-style rendering w/o inheriting from"
This reverts commit eb4688bf5ea132cd8ddc802a7dad6d423ad50543.
Conflicts:
patches/minecraft/net/minecraft/client/renderer/ItemRenderer.java.patch
Build 1.6.2-9.10.1.869:
vilim.lendvaj: Prevent NPE in fluid lookup for block
cpw: Fix broken PR from vilml. TEST!
Build 1.6.2-9.10.1.867:
CovertJaguar:
Allow Fluids to have Rarities
Used for tool tips.
Build 1.6.2-9.10.1.866:
cpw: Fix the divider
Build 1.6.2-9.10.1.865:
Adubbz:
Sky colours now smoothly transition
Made transitions even smoother
Sky colours now smoothly transition
cpw: Move stuff around a bit- also tie range and enabled to options.
Build 1.6.2-9.10.1.864:
ml:
Added a RenderType that allows Map-style rendering w/o inheriting from
ItemMap.
cpw: Tweak patch comment
Build 1.6.2-9.10.1.863:
mitchpetrie29: Check if block is air instead of just ID zero when growing from stem block.
Build 1.6.2-9.10.1.862:
cpw: Allows proper raytracing from actual player eye position rather than hardcoded eye heights.
Build 1.6.2-9.10.1.861:
claire.alexandria: Added fov hook
claire.alexandria: fixed merge
claire.alexandria: Small formatting changes (opening braces on new line)
Build 1.6.2-9.10.1.860:
cpw:
Updated FML:
MinecraftForge/FML@b5af446d7111730c7973c9f0d6b76e62b78b9131 Fix sidedness derp in LanguageRegistry.
Build 1.6.2-9.10.1.859:
cpw: The partial tick should be available for all render player events. Weird it wasn't.
Build 1.6.2-9.10.1.858:
cpw: Reverting HarvestEvent, for new implementation
cpw: Redo harvest event. This time with simpler logic, that should be less liable to weird "missing" stuff.
Build 1.6.2-9.10.1.857:
LexManos: Fix bug where guis were not closed properly, resulting in signs not having there text set.
Build 1.6.2-9.10.1.856:
cpw: Change trigger calculation so entities get some time to age before refiring the event.
Build 1.6.2-9.10.1.855:
LexManos: Create helper apply_patches script and add paramter to change patch output folder.
Build 1.6.2-9.10.1.854:
cpw:
Change from Cancelable to using a Result. This means you can force despawn mobs you
don't want around anymore. Also, deferred check to once every 20 ticks. May tune it
down further or make it a config if this event is a lag issue.
Build 1.6.2-9.10.1.853:
cpw:
Add a cancellable despawn event- allows mods to decide to prevent the despawning
of certain otherwise normally despawnable mobs.
cpw:
Added fov hook
Small formatting changes (opening braces on new line)
cpw: Create es_ES.lang
Build 1.6.2-9.10.1.852:
cpw: Add some javadoc to the HarvestBlock event.
Build 1.6.2-9.10.1.851:
cpw: Use the dropchance from the event.
cpw: Clean up some formatting.
Build 1.6.2-9.10.1.850:
claire.alexandria: Added tessellation methods to obj model, for ISBRH-friendliness
claire.alexandria: Fixed both RenderAllExcept behaviours
claire.alexandria: Added more render methods to IModelCustom interface.
jk-5:
Added GuiOpenEvent
You can use this for a clean way to override guis, without needing an
TickHandler to check if the gui you want to override is open and show
your own gui
Proper close check
mhahn:
capacity was not respected
Updated to properly calculate the amount of free space in the tank
before checking that against the amount of the resource.
robin: create french localization
claire.alexandria: Added display name hook
claire.alexandria: Memoization of display name result
claire.alexandria: Added mouse event
claire.alexandria: inserted hook into Minecraft.java
claire.alexandria: fixed logic error
ohai.iChun:
Fix player push out of blocks clientside being hardcoded and not based on entity size.
Added player eyeHeight field to allow changeable eye heights of players rather than being hardcoded per player class as well as add a getDefaultEyeHeight function.
cpw: Reduce patch size significantly
cpw: Fix patch for new MCP naming.
cpw: Add a bit of javadoc
cpw: MachineMuse, remember, there's TWO model formats supported!
cpw: Defer firing CreateDecorator until it's likely mods have had a chance to register their listener. Should close #759
cpw:
Add a harvestblock event, to allow mods to intercept and change the drops for blocks. Don't abuse this, or we'll have to take safety measures.
Fires for both silktouch and non-silktouch harvesting, and provides the player. Note, you may need to
change your break overrides to pass on the player for best results.
cpw: Add in a block reverse lookup for fluids. Closes #749
Build 1.6.2-9.10.1.849:
cpw:
Update forge for MCP naming updates
Updated FML:
MinecraftForge/FML@d0c6e92900590f578b80d9a6c00fa28fd333d3bf Update MCP data
cpw: Update version to 9.10.1 for mcp naming changes.
Build 1.6.2-9.10.0.848:
cpw: Fix possible NPE in searching code.
Build 1.6.2-9.10.0.847:
cpw:
Updated FML:
MinecraftForge/FML@2a9c485edc4cf3382154d5b3b9b600386f2ab8ae Remove @SideOnly from 70318 (getDistance) it makes no sense that it's not on the server.
Build 1.6.2-9.10.0.846:
cpw:
Updated FML:
MinecraftForge/FML@a13598b17ea9637c054d867a76298d6c080c5e32 Use java 1.6 compatible method of closing the zip file. Stops stupid compile error.
Build 1.6.2-9.10.0.845:
cpw: Small fix to container registry. emptyContainer is not null, it's "NULL_EMPTYCONTAINER" now and won't match any valid container.
Build 1.6.2-9.10.0.844:
cpw: Tweak the release to add in assets to the distributable. *sigh*
Build 1.6.2-9.10.0.843:
cpw:
Updated FML:
MinecraftForge/FML@1c9a853868f7df0daa5f67b99401dfab44ae18e6 Allow coremods to properly inject asset readers.
MinecraftForge/FML@40b54013b4c9b01686411cd47a7866eeb650ea2b Allow server side lang file injection, hopefully
cpw: Add some starting work for a forge tps command. Also update coremod for new FML behaviour
Build 1.6.2-9.10.0.842:
cpw:
Updated FML:
MinecraftForge/FML@b993cf4a9825865b3a8a0c7b083c23d56dbd1d6f More exception handling for less derpiness.
Build 1.6.2-9.10.0.841:
cpw:
In the time honoured tradition of trying to fix vanilla, we today attempt to patch the pathfinding AI so that it doesn't lag when
there's a lot of entities. Basically, if the zombie can't reach the villager, backoff subsequent pathfinding attempts. Hopefully
should really help with lag caused by zombie swarms.
Build 1.6.2-9.10.0.840:
cpw: Allow multipass RenderItem rendering for terrain icons too. Should fix sengir's saplings.
Build 1.6.2-9.10.0.839:
cpw:
Updated FML:
MinecraftForge/FML@913f6f6d36bd179db7c147db0485e99dee693933 Try and use the relaunch log, which should be classloaded..
MinecraftForge/FML@ac065ff5f76b6c512b346366107efde66e9e1c88 Reset the IWorldGenerator seed for each mod, before calling. That should mean worldgen is consistent and not dependent on mod ordering, or mod sideeffects.
Build 1.6.2-9.10.0.838:
LexManos: Cache world on all render passes in case some mod disables the first pass.
LexManos: Skipp toss event for null entity items. Closes #732
Build 1.6.2-9.10.0.837:
LexManos: Fix bug with custom Fluids. You can now drown in them!
Build 1.6.2-9.10.0.836:
cpw:
Updated FML:
MinecraftForge/FML@9468e41bbf3ea425c50daa710cf3ada11c82b238 Fix up scala refs, for better results
Build 1.6.2-9.10.0.835:
Nick:
Adds Temperature to Lava
Missing lava temperature. Feel free to change it to any value.
1300K is the typical max for Magma so wasn't sure what was desired. Regardless, better than the same temp as water at 295K :smile:
Build 1.6.2-9.10.0.834:
cpw:
Updated FML:
MinecraftForge/FML@4a9d0f9bd522e543b76daaf9c49b6214443c595f Add in some log information
cpw:
Updated FML:
MinecraftForge/FML@f157e7a6ecdeac2758fc0eaf547d3e8a763fb15b And more coremod logging
cpw:
Updated FML:
MinecraftForge/FML@ffdd056a18eddb8f28b74435d40e69c956b9dd48 Check keys, not values *sigh*
Build 1.6.2-9.10.0.833:
cpw:
Updated FML:
MinecraftForge/FML@03989166665956df03aa85472eb13dca2d74a38d And actually instantiate the collection *sigh*
Build 1.6.2-9.10.0.832:
cpw:
Updated FML:
MinecraftForge/FML@dec9a3924d361bc016cb7f6b3e95764158cf5ae1 Add in "FMLCorePluginContainsMod" in the manifest. If this value is present, FML will attempt to parse your mod jar file as a normal mod file as well, instantiating mod containers there.
Build 1.6.2-9.10.0.831:
cpw:
Updated FML:
MinecraftForge/FML@24701206808a43b9c7b10d7130c47b5d1e841bb6 Clean up a couple of resources. Also, don't parse jars just because they're in the mods dir
Build 1.6.2-9.10.0.830:
cpw:
Updated FML:
MinecraftForge/FML@9a5e24e338c6172531efb086a4b584c26d4f1435 Fix stupid derp is stupid. Closes #275 and means sp614x can do his thing
MinecraftForge/FML@ba90b616070ce15793eb05e5afaed62a6f07c6e7 Make sure we only add args to the argument list if a tweaker hasn't already. Should fix LiteLoader compatibility issue.
Build 1.6.2-9.10.0.829:
LexManos: Fix NPE in enchangint books.
Build 1.6.2-9.10.0.828:
LexManos: Fix inverted case, search works now.
Build 1.6.2-9.10.0.826:
ross.swartz: Add stone and cobblestone to Ore Dictionary
ross.swartz: Update OreDictionary.java
LexManos: Addition: Added isAllowedOnBooks hook to Enchantments Closes #589
Build 1.6.2-9.10.0.825:
LexManos: Deprecate Block.addCreativeItems, Kill in 1.6.3+ Closes #655
Build 1.6.2-9.10.0.824:
mehvids: Add onNeighborTileChange callback to block by generalizing func_96440_m to all blocks rather than just comparators.
Build 1.6.2-9.10.0.822:
malc.geddes: Added a new function to allow control over whether an entity is dismounted when the entity it is riding goes under water
LexManos: Allow creative tabs to have a search box if they want to Closes #592
Build 1.6.2-9.10.0.821:
tommy.stanley96: Fixed Fluid Non-Solid Block Duplication
tommy.stanley96: Fixed Double Item Drop
tommy.stanley96: Fixed Classic Checking
Build 1.6.2-9.10.0.820:
LexManos: Add optional feature to check entire bounding box for ladders. Closes #709
Build 1.6.2-9.10.0.819:
LexManos: Only refresh vanilla tile entities when IDs change.
Build 1.6.2-9.10.0.818:
LexManos:
Updated FML:
MinecraftForge/FML@f275a24b43559cfdced243ff77e9848c9d458362 Add in some reverse lookup methods for game registry data
MinecraftForge/FML@cb05c8c4aa60a131de92f0a21c06697c8f8896a8 Add missing SideOnly in BaseMod
MinecraftForge/FML@1857064afa9ace796440c19f3275637a6e659375 Merge pull request #266 from grompe/patch-1
MinecraftForge/FML@182aa9c0cbe61ac69b0d428ead1dc817dd2a2e71 Fixed install.sh not passing arguments to install.py
MinecraftForge/FML@f46a538b41157081c840f647f123513ac4c5a071 Merge pull request #268 from Bo98/sh-args-fix
MinecraftForge/FML@29ef3d5ab412dcabbd67695558880c45011ace82 Update installer.
Build 1.6.2-9.10.0.817:
tommy.stanley96:
Fluid Render Fix
Formatting
ohai.iChun: Add Pre and Post events for RenderLivingEvent
ohai.iChun: Add Pre and Post events firing for RendererLivingEntity
ohai.iChun: if statement added
ohai.iChun: Update RendererLivingEntity.java.patch
tommy.stanley96:
Fixed fluids eating each other
Fluids check for other fluids density before flowing, if their density
is higher they can flow into the other fluid, if not they can't.
CovertJaguar: Add SneakClick bypass to client
cpw: Fix names for water/lava fluids. Closes #689
cpw:
Add support for loading legacy liquid stacks as new fluid stacks.
Requires having been written with the "liquidname" code from forge 1.5.x
cpw:
Add a translation map for looking up legacy liquid names to convert
to new fluid names.
tommy.stanley96: Fluid Rendering Fixes
cpw: Fix formatting error in PR
cpw:
Tweak setBlock in update tick - it should only send serverside updates for
source blocks. Experimental attempt to fix worldgen issues for fluid blocks
cpw:
Updated FML:
MinecraftForge/FML@57befa89bbbf2bc2fcc4a97b78e07b3f9e23ef9d Fix keybindings being derped
MinecraftForge/FML@1d84e8063e9d0dc73928dba006e6001201285cad Temporarily add a version of 'reobfuscate.py' that will resolve complex reobfuscation graph issues with specialsource. Copy it over 'reobfuscate.py' in the mcp runtime dir. Hopefully will have an MCP/specialsource fix in the coming days.
ohai.iChun: Fix RenderLivingEvent.Pre/Post not being fired by most Renders.
tonkamatt98:
added temperature to fluids
it could be useful for blocks that are affected by temperature
mitchel.pyl: Fix render colour on bottom of fluids
mitchel.pyl: Fix small derp
Build 1.6.2-9.10.0.816:
purpleposeidon:
Add an InputStream constructor to WavefrontObject
It is said that Resource Packs will return InputStreams. And I like putting my models into texture packs which, obviously, give InputStreams rather than URLs.
7of9: Add cloud height to WorldType
Build 1.6.2-9.10.0.815-miscchanges:
mitchel.pyl: Fix render colour on bottom of fluids
mitchel.pyl: Fix small derp
Build 1.6.2-9.10.0.812-miscchanges:
tonkamatt98:
added temperature to fluids
it could be useful for blocks that are affected by temperature
Build 1.6.2-9.10.0.811-miscchanges:
ohai.iChun: Fix RenderLivingEvent.Pre/Post not being fired by most Renders.
Build 1.6.2-9.10.0.810-miscchanges:
cpw:
Updated FML:
MinecraftForge/FML@57befa89bbbf2bc2fcc4a97b78e07b3f9e23ef9d Fix keybindings being derped
MinecraftForge/FML@1d84e8063e9d0dc73928dba006e6001201285cad Temporarily add a version of 'reobfuscate.py' that will resolve complex reobfuscation graph issues with specialsource. Copy it over 'reobfuscate.py' in the mcp runtime dir. Hopefully will have an MCP/specialsource fix in the coming days.
Build 1.6.2-9.10.0.809-miscchanges:
cpw: Fix formatting error in PR
cpw:
Tweak setBlock in update tick - it should only send serverside updates for
source blocks. Experimental attempt to fix worldgen issues for fluid blocks
Build 1.6.2-9.10.0.808-miscchanges:
tommy.stanley96: Fluid Rendering Fixes
Build 1.6.2-9.10.0.807-miscchanges:
cpw:
Add a translation map for looking up legacy liquid names to convert
to new fluid names.
Build 1.6.2-9.10.0.806-miscchanges:
cpw:
Add support for loading legacy liquid stacks as new fluid stacks.
Requires having been written with the "liquidname" code from forge 1.5.x
Build 1.6.2-9.10.0.804:
copyboy: Fix getArmorTexture by passing it the subtype
Build 1.6.2-9.10.0.802:
LexManos:
Re-added deprecated liquids system. To be removed next major MC versions after issues with Fluids are fixed. (reverse-merged from commit 9b5208fa308f22c24e295ce3be38dcafea2857ea)
This WILL be removed and should not be developed against aside for a temporary 1.6 release.
Build 1.6.2-9.10.0.801:
LexManos: Remove SideOnly(Client) in IBlockAccess.isAirBlock
Build 1.6.2-9.10.0.800:
LexManos: MinecraftForge/FML@10b16d32da4b7c32b15e69cf1c636505ebbe2540 Use json 2.9.1 nightly for OSX in release json like vanilla does.
Build 1.6.2-9.10.0.799:
LexManos: General code cleanup of Fluid system. Made Fluid icons and associated functions non-sided.
Build 1.6.2-9.10.0.798:
LexManos: MinecraftForge/FML@3f21a2c1b413e591f61f2906c3adbadd9c5b09e3 Stupid spaces and windows escaping -.-
Build 1.6.2-9.10.0.797:
LexManos: MinecraftForge/FML@b2958c9066db8c95bb4260893fbfe00103fc4ba1 Add quotes for paths with spaces -.-
LexManos: Package 'version.json' with universal jar for maunchers to use. It's the json used by the vanilla Minecraft launcher for Forge.
Build 1.6.2-9.10.0.796:
LexManos: MinecraftForge/FML@9520978b81d4cba5d8b0af0d5f155bd115023795 Use a temporary file for recompile's command line to combat command length to long issues.
Build 1.6.2-9.10.0.795:
LexManos: Updated FML: MinecraftForge/FML@4981aa3421262c3c1c4705468fe202df8198b9f0 Fix potential NPE in villager skin registry. Closes #678
Build 1.6.2-9.10.0.794:
Nick:
Fixes Vanilla Fluid Still Icon Setters
Fixes null icons from being set for both the still water/lava icons, and sets the correct Icon.
Build 1.6.2-9.10.0.793:
LexManos: Updated FML: MinecraftForge/FML@c48b48ee15f38d3e794b6eb3499c536226ca5a79 Fix server launching.
Build 1.6.2-9.10.0.792:
cpw: Fix for new location of mcp logo.
Build 1.6.2-9.10.0.791:
cpw:
Updated FML:
MinecraftForge/FML@0378355c3720d587652b7792665a8b70bf104eb3 The server.classpath generates the runtime manifest, so it needs the non-debug asm jars.
MinecraftForge/FML@a3f48734ffbbb2eccffdafcd3cbe73824bd1afd6 Fix up jar sanity check code. FML validation of the jar works now and doesn't derp classloading.
MinecraftForge/FML@9947ba85036542a3231e25328d3300f2a5337370 Fix logo handling. no more NPE if the logo can't be found. Also, fix location of mcp logo now.
Build 1.6.2-9.10.0.790:
Adubbz:
Made eating particles compatible with metadata
Removed extra spaces
Made eating particles compatible with metadata
cpw:
Updated FML:
MinecraftForge/FML@e44e8b3112bd56c716a00c19d0be2f15d9128b70 Force a global asset scan prior to mod construction : you should be able to reference assets anywhere in your mod now.
MinecraftForge/FML@20e93a412ee13498babef02d404f57bf5e0fd919 Fix up logos in the mod screen. Clean up some unnecessary casts and suppressions, use the -debug asm library at dev time, since it contains full symbols and code in compiled form.
LexManos: MinecraftForge/FML@b9f4b02cb0b041594656f05de70225df702a8ddd Kill mcp's truncate method, for more useful logs.
LexManos:
Updated FML:
MinecraftForge/FML@7348929819b0ae8ad35419ef5dbf66e66b442858 Kill release time scala libraries, to be re-evaluated after all movement is done and shit is fixed. May require manual instalation for mods that use scala.
MinecraftForge/FML@6de36d78f57f6f08ec586b67b684d0e5406cd436 Coremods now have a primitive dependency capability. Also, we search mods dir for special "TweakClass" manifests. These are using the vanilla tweak mechanism to inject into Minecraft. Helpful for other "platform" systems, when you don't want to have to deal with json changes!
MinecraftForge/FML@d4b30422b64a62a2f8a8c2cccd94cb0fd06154e0 Update build and eclipse workspaces for debug asm.
LexManos: MinecraftForge/FML@c625ef30093abb0755985c74d1f31e2c4cf6cfdd Update Forge signature for new private key
LexManos: Update changelog generator to point to new jenkins.
LexManos: Monkey patch to try and make print flush properly.
Build 1.6.2-9.10.0.789:
LexManos: Re-add reverted patch AGAIN cpw check your commits -.-
Build 1.6.2-9.10.0.787:
cpw:
Updated FML:
MinecraftForge/FML@bab4d87ce76baa40200939cc46780b1d3b2ff466 Update FML for new stealth update for 1.6.2
Build 1.6.2-9.10.0.786:
cpw: Remove forge ISidedInventory, deprecated since 1.5.
Build 1.6.2-9.10.0.785:
cpw:
Allow optional rider interaction for entities, thanks for the suggestion Vswe.
Updated FML:
MinecraftForge/FML@7af5c21d74679d1a53550f9719bba22b2f28dd13 @InstanceFactory was set to look for Fields instead of methods
MinecraftForge/FML@bc9d1fe657c7a0953adc7d4c5ed81c575bdfb0f1 Merge pull request #254 from CaptainShadows/patch-1
Build 1.6.2-9.10.0.784:
LexManos: MinecraftForge/FML@c913258ca38e662264bdf4aafbfbef86881c9290 Disable signature check of client for now, it's broken.
cpw:
Updated FML:
MinecraftForge/FML@97269a5e3dc0a0e2e1a79183f9f5f2ee120e90bd Decode the file URL. Hopefully will make things work more..
MinecraftForge/FML@d4d522c5978ecd7a9195977b3327b441901bb5b4 And don't forget to remove the test code
Build 1.6.2-9.10.0.781:
LexManos:
Updated FML:
MinecraftForge/FML@dfa3a2665d6782b87713cea26dda558ac990a72a Add MC Version to installed version name.
MinecraftForge/FML@e91431fb707ce3e7e4296ccb8f3b2e5208b4dfac Don't validate signatures on servers, they are not signed.
MinecraftForge/FML@c7ab872c85dd057a4e44e12e34089dfd1a1184b6 Temporarily disable GuiModList's Mod logos.
Build 1.6.2-9.10.0.780:
LexManos:
Updated FML:
MinecraftForge/FML@c997f2adbc4c11cd8c2abe5f82ccd00b0e954b68 FML now verifies that the minecraft jar is correct and intact. This is intended to discourage those who think that modifying the minecraft jar is still acceptable.
MinecraftForge/FML@0db4624b27a5ecf59ed506ccfc26459ca26ee408 Don't initialize the server.
MinecraftForge/FML@4fa375683fdb7edff67c951fb371ab4a23435308 Fix NPE in new debug line when patch targets don't exist.
Build 1.6.2-9.10.0.779:
LexManos: Fix accedential reverted patch.
LexManos: Proper return for getRegisteredFluidContainerData thanks Soaryn. Ref issue #634
Build 1.6.2-9.10.0.778:
cpw: Make resourcelocation the class available on the server.
Build 1.6.2-9.10.0.777:
cpw:
Drop two domain related fixes that have been applied in vanilla.
Updated FML:
MinecraftForge/FML@c47d08c89dfcacb96e36c427593174e08dcb4224 Tweak debug data on patched classes
MinecraftForge/FML@dbf5fe38cee04288e92d57f8782114b452245bce We now generate an adler32 checksum for each patched file and verify at load time that they match. Mismatch won't crash, but will emit a big warning..
MinecraftForge/FML@e88a0cd13f63904f7317e1a73880611f58820389 Update for stealth update. Thanks mojang!
MinecraftForge/FML@2336002f20e9412a7663781b23c51de0eff6a692 The game is going to exit in face of patch mismatch, unless you force it to run with fml.ignorePatchDiscrepancies in the system properties.
Build 1.6.2-9.10.0.776:
LexManos:
Updated FML:
MinecraftForge/FML@1d0384f8f664d7002019b865675a5fddf2963b3d Update for 1.6.2 and MCP 8.04
MinecraftForge/FML@111b0216fdc55f56a8361a584141bca7c9c3f070 Add the jsons for 1.6.2
MinecraftForge/FML@6f96d89e2bf9313b26eeb4c334a208bf3e1c9ad4 Update eclipse workspaces for 1.6.2
LexManos: Remove deprecated Liquids API, Use new Fluids system as replacement.
LexManos: Bump version to 9.10 for new MC version and removal of Fluids.
Build 1.6.1-8.9.0.775:
cpw:
Updated FML:
MinecraftForge/FML@c97ac284a5e7dbdbccbad2f7ccc95252c4aef239 Update ModLoaderFuelHelper.java
MinecraftForge/FML@3a200e901e34ade679e4485307f57bee725bbe94 Fix coremod injection into main system. Should stop double-dipping coremods.
MinecraftForge/FML@2676c8999cbede05b5475ba68bfc25467a67d4fc Update mcp data. fixes #248
MinecraftForge/FML@5990e29af7b70e343dfd9cf38bb3e033e71a4489 Merge pull request #247 from jk-5/patch-1
MinecraftForge/FML@adc89722770b7319884619cadc6f10cc9050df24 Add cascadedTweaks. This will allow simple coexistence for any other mod framework using the tweaker system as well. Hi Voxel and LiteLoader!
Build 1.6.1-8.9.0.774:
xcompwiz:
Makes player-specific spawnpoints dimension aware
Makes ServerConfigurationManager correctly get player-specific spawn
point for the target dimension
Changes EntityPlayer to store and save a (bed) spawn point for every
dimension, as well as transfer them to respawn "clones"
Build 1.6.1-8.9.0.773:
LexManos: Re-gather list of Icons when atlas textures are stitched, allows for addition/removal of blocks/items after the atlas's inital constrction.
Build 1.6.1-8.9.0.772:
LexManos: Fix enchantment effect on single pass items. Closes #644
Build 1.6.1-8.9.0.771:
kinglemming:
Forge Fluid System!
Signed-off-by: King Lemming <[email protected]>
LexManos: Mark old liquid system as deperated to be removed next Minecraft release.
Build 1.6.1-8.9.0.770-newliquid:
LexManos: Mark old liquid system as deperated to be removed next Minecraft release.
Build 1.6.1-8.9.0.769-newliquid:
richard: Techne model loader (incomplete for debugging)
richard: Complete it, got the bug figured out
cpw:
Updated FML:
MinecraftForge/FML@24c405665105a789a0708a7e30c8bcb96899da6b Add in an optional modid identifier for @SidedProxy. It's main use is when both scala and java @Mods reside in the same package, and you want the @SidedProxy behaviour for a specific @Mod language type. In general it should not be needed otherwise.
MinecraftForge/FML@cd0466395a8f1af3ec44f124bf4088df2d318603 Fix sysout with trailing messages after a newline
LexManos: Disable ImageIO's File based cache, should speed up texturepack loading/stitching.
jadran.kotnik: Added rotation support for all vanilla blocks that can be rotated.
LexManos:
Add NPE protection to ItemStack delegates. Closes #601
Also cleaned up the names of said delegates, we do not have to follow MCP's crowdsourced names as they are very bad.
Redirected damage through setItemDamage to allow items to have finder control of breaking.
LexManos: Fix Air block check in BlockPortal.
LexManos: Fix hoes being able to till dirt under other blocks, and made it look for air type blocks.
LexManos: Add NPE protection to refernce to MinecraftServer.worldServer
LexManos: Fix AIOOB exception in crash reporting if exception does not have a stack. Possible, but odd.
LexManos: Fixed changelog generation.
LexManos: Forgot most important side, release script.
cpw: Make glass panes and iron fences connect to block sides based on solidity. This does change IBlockAccess, so anything with a custom IBlockAccess may need to implement the new method.
cpw:
Fix server patch FML update
Updated FML:
MinecraftForge/FML@22738de028a9ba51d43d73857dfb8969985566f0 Attempt to properly fix deadlock if the internal server derps. It should never hang now. Damn you fast computer..
MinecraftForge/FML@05a854cd2af53ca822ee8b249b0b3bbe44f94675 Small tweaks to the mcp data. Nothing major..
mitchel.pyl: Fix tripwire patches for solid sides
LexManos: Added EntityLiving to Block.isLadder arguments, deperacating older version. New parameter has the possibility of being null, so modders must take care. Closes #608
LexManos: Add air checks to BlockSand falling and Piston pushing. Please report any other issues with custom 'Air' blocks in issue #602
LexManos: Bump Forge revision and mark recomended.
LexManos: Fic Chest content gneeration delegate call. Cloases #609
LexManos: Add air check to Flint and Steel Ref: #602
LexManos: Update workspace for new library structure.
LexManos: Update FML to 16launch branch
LexManos: Initial patch update to 1.6, Does not compile, need to update references to the old TexturePack system.
LexManos: Small fixup, need to Update GuiIngameForge for new HUD changes.
LexManos:
Updated FML:
MinecraftForge/FML@6a318ddb784ca8b2bef0f6718089f7beb4d404e0 Fix typo in new packages.
MinecraftForge/FML@3711da9c456d20865a965734cc5aeaf7f5cb5e5d Another typo
MinecraftForge/FML@e35e4b16ff3d6dea547c41f02f2ca31ebe1f74aa More fixups
MinecraftForge/FML@18371bd8c9bd107f774289da35519f593ccc8ee7 Some fixes for updated mcp code
MinecraftForge/FML@ef646d3146e1f285d2cb8e79a74373beffa84774 Merge branch '16launch'
MinecraftForge/FML@7406b38d8ad1bc5c2c641c74f1614b946f246588 1.6.1
MinecraftForge/FML@12c928c538c1c04d3a21255c747d15468328ace9 Tweak commands patch
MinecraftForge/FML@3f15cd54c2d776ea161aaedbecad9e188d66578f Functional client @ 1.6.1
MinecraftForge/FML@71a92de5d95fccc4fe17cc39d0836891c6622f4d Client launch for eclipse
LexManos:
Updated FML:
MinecraftForge/FML@8960f6869fbe30d358a40997c47999025c3eae68 Add windows lzma executable http://tukaani.org/xz/ He states that most things are under public domai
n, But I couldn't find an exact reference to this executable. I'm going to assume it under public domain and distribuiting it here is fine. If not someone pleas
e direct me to the apropriate license and I will act accordingly.
MinecraftForge/FML@70cfe24e67adf6872ef1501599e2115e420c2539 Fix wrong project name in distro eclipse launch.
MinecraftForge/FML@7a004087f79b94bc92f29d50eb71288b6c1c968c Add deobf data to src dist. Dont create deobf jar as we ship the lzma Added *.lzma to .gitignore
LexManos:
Updated FML:
MinecraftForge/FML@110cf372eb5aa85df20b248976f1acdefa85e102 Add deobf data to merge-common, workspace is now actually runnable!
LexManos: Support dirty submodules in changelog script.
LexManos: 1.6.1 Update
LexManos: Add new launch configs to dev workspace.
LexManos: Update GuiIngameForge to reflect Mojang changes in 1.6.1
LexManos:
Updated FML:
MinecraftForge/FML@c418da353f6a8420b095fa737e8b0eae270d31ae Cleanup coremod code, server side working now.
LexManos: Update release script to generate binary patches and include deobf data.
LexManos: Deprecation sweep and update version to 8.9 to reflect 1.6.1 update.
LexManos: MinecraftForge/FML@7fecf2ad6bdd918149a3c43453f6a78bd11e5404 Update mcp URL.
LexManos: Try absolute path, to not confuse jenkins.
LexManos:
Updated FML:
MinecraftForge/FML@1229c4c4ea888f4f69272eed94ef5a53ce79ccda Fix src distrabution, and got rid of pesky common folder in eclipse workspace. src is now installable.
MinecraftForge/FML@902772ed0cb6c22c4cd7ad9b0ec7a02961b5e016 Revert common folder fix, Common folder does nothing, feel free to delete it after first load.
LexManos: Update src distro installer script. Source distro works now!
LexManos: Update ToolMaterial enum helper.