-
Notifications
You must be signed in to change notification settings - Fork 26
/
ChangeLog
1764 lines (1100 loc) · 47.1 KB
/
ChangeLog
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
2017-12-07 Verclene<[email protected]>
* * e3e546aedbb8daeaa9f148aaa8c167dbede2db33
* 8.1.6.140: Reinforce range check
* - #130, #131
2017-12-07 Verclene<[email protected]>
* * 2f77f779f303912c7e41a5005f0554f9d25b2bc6
* 8.1.6.139: Avoid OoBX for strange reference
* - #130, #131
2017-12-04 Verclene<[email protected]>
* * 69252e1720b1edc136d06b1b022f4325c48fde66
* 8.1.5.138: Adapt checkEntity for AttackOnCollide
2017-12-01 Verclene<[email protected]>
* * 06f40808921425ce16bf2dcdb77a461a05b63932
* 8.1.5.137: Modify maid following
2017-12-01 Verclene<[email protected]>
* * d71f5a4f351658885a9c8dcfac3d2d2a9c5d1239
* 8.1.5.136: Enhance searching targets of fencer, close #127
2017-12-01 Verclene<[email protected]>
* * 482c1a3c291586835ea5e137d7106631b272f053
* 8.1.5.135: Expand teleport, fix #126
2017-11-30 Verclene<[email protected]>
* * 3a8f3b5c8fb848b76ad83495b08dc9b8f1ee388a
* 8.1.5.134: Modify loading, subfolders under mods will no longer be loaded
* - Read classpath from properties
2017-11-30 Verclene<[email protected]>
* * cab5f9372ea06af001bb1c363f6ded9597016886
* 8.1.5.133: Remove unnecessary methods; Migrate dev loading
2017-11-28 Verclene<[email protected]>
* * 9c59a30385282a3702f767c4e5c264d14c9a33a2
* 8.1.4.132: Update ChangeLog
2017-11-28 Verclene<[email protected]>
* * d73ebb6b9cbae7dfbb65bdf82a34eb967eb7d8a1
* Mod versions
2017-11-28 Verclene<[email protected]>
* * a4c4fcab7569595668b345ae6b64a3caa8a46421
* 8.1.4.132: Fix IFF#getfFile() #125
2017-11-27 Verclene<[email protected]>
* * b729d4939b23b35b8a9585b3a87159e1c522434d
* Fix symlinks
2017-11-27 Verclene<[email protected]>
* * a0968fed629e726b30cffbdf3089a694fe47cbbe
* Modify build.gradle and README for using Submodule
2017-11-27 Verclene<[email protected]>
* * b88ae361c3de00cfed6c3e0447d6c8210cc068de
* Use EBLib as Submodule
2017-11-27 Verclene<[email protected]>
* * 76277513692632393a3eb81191c81a7e5d53ccc2
* Merge remote-tracking branch 'origin/master'
2017-11-27 Verclene<[email protected]>
* * b543c7498857629f3153a6a457d43d341d81fe38
* 8.1.4.131: Modify AvatarMP for Sponge #125
2017-11-27 Verclene<[email protected]>
* * 19d0f743d6f060292b5512a643db55f04a921867
* 8.1.4.130: Modify AvatarMP for Sponge #125
2017-11-24 Verclene<[email protected]>
* * cc86678916c3ece6c6345be4030149aec9e2d62f
* Merge remote-tracking branch 'origin/master'
2017-11-24 Verclene<[email protected]>
* * dfe7156477ee2f84a228dc5426c341e38b6dedef
* 8.1.4.130: Make maid mode not allow to be null
2017-11-23 Verclene<[email protected]>
* * ba141af2579f799d4a9f61d5cb9624a163d36a98
* 8.1.4.129: Update dependencies
2017-11-22 Verclene<[email protected]>
* * 26d15c45edb568a68dfcf67b1bc96ed9883f4970
* Modify README
2017-11-21 Verclene<[email protected]>
* * fca6648a0502ebe0c2e1d4a172425377967c0c44
* Fix versions
2017-11-20 Verclene<[email protected]>
* * aaa25bfddd6658cb8cfd1ae574677a01c8a44ebf
* Add generating ChangeLog script
2017-11-20 Verclene<[email protected]>
* * 176b687a9cdcc2dd237c0c828aec3ea8b2caf01f
* Fix link to LICENSE.md
2017-11-20 Verclene<[email protected]>
* * 6a63389a0ca232b7a3e95f92e74fa6a5dde8a0e4
* Make link to changelog
2017-11-20 Verclene<[email protected]>
* * be3a4f0de580dff9da29939c642ddfe2102094bc
* 8.1.4.128: Fix saving mode bug
* - Fix maid's freedom on contract(again) #122
2017-11-18 Verclene<[email protected]>
* * ff19a9dc43d6419101a4993af53eff98906e7f59
* mod mcmod.info
2017-11-17 Verclene<[email protected]>
* * 892d6704a0a5180772ebea23ed7fde8422b63465
* Fix versions; Add changelog
2017-11-16 Verclene<[email protected]>
* * a7563c3dcbff3f6115fe16177fd3d28b14326e68
* 8.1.4.127: Fix maid's freedom on contract, fix #122
2017-11-14 Verclene<[email protected]>
* * 2b51d57e8a3ab3e38e8f36fa68e8fb265f22d606
* 8.1.4.126: Fix "Escorter"
2017-11-13 Verclene<[email protected]>
* * 6c7abcb7cfd0d588b08f8c3ac09d71cb7c9053dd
* 8.1.4.125: Adjust teleporting
2017-11-13 Verclene<[email protected]>
* * f179d2429be5ad166986d76ca8979f3a619b0339
* 8.1.4.124: Maids can walk on rail, fix #65
2017-11-08 Verclene<[email protected]>
* * 837b38606dd66a3857435a4de4ceec0f03d70911
* Mod mod versions
2017-11-07 Verclene<[email protected]>
* * 6a49af440a89c0dc2b1adb8869a6e1f3684b6549
* 8.1.4.123: Fix mode names
2017-10-30 Verclene<[email protected]>
* * 26ab6052ff30a20841f3c17096913a1ad3178073
* 8.1.4.122: Fix isDestinationSame(), fix #117
2017-10-30 Verclene<[email protected]>
* * b0b6b06b4cc99e165286cbf552984716ef3660b2
* 8.1.4.121: Maid does not teleport during her work, fix #120
2017-10-16 Verclene<[email protected]>
* * 5de097a6380512bbd96ff9cc4936c963746c14a5
* 8.1.4.120: Remove reward items
2017-10-11 Verclene<[email protected]>
* * ad8f47b8fdaab1df9d66197859c966215a811393
* Revert "Remove devmode flag"
* This reverts commit b4ccf35651a4d785a837c728da218077f77f0d59.
2017-10-05 Verclene<[email protected]>
* * b4ccf35651a4d785a837c728da218077f77f0d59
* Remove devmode flag
2017-10-02 Verclene<[email protected]>
* * 218754e85a5411ec716a7a5d56913b81e41080d5
* 8.1.4.119: Fix Item trigger
2017-10-02 Verclene<[email protected]>
* * 4e81f90dd0f8f729dcf59570e54db3ccd45ea6f1
* 8.1.4.118: Fix TorchLayer trigger
2017-10-02 Verclene<[email protected]>
* * 9669d348462c2e80ef913cae2485c8373c490a72
* 8.1.4.117: Fix seed register
2017-09-29 Verclene<[email protected]>
* * c17a36c53de6cf8a266006e13c04b791420dfd9a
* 8.1.4.116: Refactor under entity
2017-09-27 Verclene<[email protected]>
* * 0157d8f205734e231124d6b295671953ce19f148
* 8.1.4.115: Fix loadig bugs
2017-09-27 Verclene<[email protected]>
* * f3591c78301981401c916ca5541f16dd9e5b005c
* 8.1.4.114: Save Trigger each maid
2017-09-19 Verclene<[email protected]>
* * 5c84b38eaf0318bd3d60a25040e1205aca288d05
* 8.1.4.113: Fix IFF load&save
* - close #108
* - Trigger Item Select needs repairing
2017-09-12 Verclene<[email protected]>
* * 9d6c21760e83bd9b367f3bedd7668a807343e889
* 8.1.4.112: Minor changes
2017-09-12 Verclene<[email protected]>
* * 10104bf0a1932acad44d20c60afd9636a7e55864
* 8.1.4.111: Rollback string switch
2017-09-11 Verclene<[email protected]>
* * 7af09aac411ce788d45e0e1ab3ba3078d78408e4
* 8.1.4.110: Make mode defined by String
2017-09-11 Verclene<[email protected]>
* * cd1cf1b7f6b2afb83321181c1e88cbb866882ac0
* 8.1.4.109: Port EntityMode for LoaderSercher
2017-09-10 Verclene<[email protected]>
* * e670957c1aa9eb2b314def3af12e8a8be0b20698
* 8.1.4.108: Revert unnecessary Changes
2017-09-10 Verclene<[email protected]>
* * 5997e1b10d167121af52e8baa6c6eafff68ccc0c
* 8.1.4.107: Loading entity modes uses classpath (game not work)
2017-09-03 Verclene<[email protected]>
* * c81682321f0985d89785db0eb954705f48342595
* Revert "8.1.3.104: Make loading modes independent from filesearch"
* This reverts commit 5ce601bfd7c21a3ade065391395966b973f18a3d.
2017-09-03 Verclene<[email protected]>
* * f0bf9b956ce98d54d15b63f26a43053aa73b6923
* Revert "8.1.3.105: Make EntityModeManager independent from ManagerBase"
* This reverts commit 5fa8090860ff069c67dd78173d900be503444d98.
2017-09-03 Verclene<[email protected]>
* * 28d7f319fdb63ee181799e372ee42f93c6e29b0a
* Revert "8.1.3.106: Fix manager accesses"
* This reverts commit 5d38d7e893b7ae632e51d863bd913dd1c4b7753a.
2017-09-03 Verclene<[email protected]>
* * 5d38d7e893b7ae632e51d863bd913dd1c4b7753a
* 8.1.3.106: Fix manager accesses
2017-09-03 Verclene<[email protected]>
* * 5fa8090860ff069c67dd78173d900be503444d98
* 8.1.3.105: Make EntityModeManager independent from ManagerBase
2017-09-03 Verclene<[email protected]>
* * 5ce601bfd7c21a3ade065391395966b973f18a3d
* 8.1.3.104: Make loading modes independent from filesearch
2017-08-19 Verclene<[email protected]>
* * 2df7bb61919a8be79d3ff1b7891c8757309ffe30
* 8.1.2.103: Update mcmod.info
2017-08-18 Verclene<[email protected]>
* * aee1026d3246d92eb9080ef45ec13d42568b359e
* Add explain for gradle script(for multiproject)
2017-08-16 Verclene<[email protected]>
* * e3b56c4f0427dcabfcf27a18fbcbbbd957362fc2
* Update mcmod.info
2017-08-16 Verclene<[email protected]>
* * 278b12ce9967e122e2b304f9a228b4df6d54d241
* Update dependencies
2017-08-15 Verclene<[email protected]>
* * c58aa372de7faf420dce91e185fbea210fdf8fa2
* 8.1.1.102: Stop maids randomwalk after teleport
2017-08-15 Verclene<[email protected]>
* * aab178c5820ac673871793ffd1750e293725e5a9
* 8.1.1.101: Add Maids teleport
2017-06-04 Verclene<[email protected]>
* * 2998081037b4bee1ca3a3fa7c0a921fb0a24411e
* Merge branch 'master' of https://github.com/Verclene/LittleMaidReengaged.git
2017-06-04 Verclene<[email protected]>
* * d3bd4842beb0657578fcd716258fe4de367cd587
* 8.1.1.100: Enhance healer
* - for prioring hand slots to be fed
* - fix #102
2017-05-22 Verclene<[email protected]>
* * 0dad71f7a30bae61e0f600d70297d54df8834335
* Merge pull request #98 from haoling/init-recursive-fix-pr
* Init recursive fix pr
2017-05-10 Haoling<[email protected]>
* * 3db922a9574e1043bca372dba71b468a65d298ac
* メイド生成時のスポーンポイントは固定になるように。
2017-05-10 haoling<[email protected]>
* * 2273ed05f48d2a086d5df73306412bc273c15bec
* Revert "メイドの初期化タイミングを遅らせた"
* This reverts commit 3dcf4c4ef5b455a9847b7a3b4e1422455b6cc1f4.
2017-05-09 haoling<[email protected]>
* * ee92651e1a26a51a1792b699800898c11b1bc24a
* メイドの初期化タイミングを遅らせた
2017-05-12 Verclene<[email protected]>
* * 98af8135aa2d2a8086675b5985e88443a8e6dc86
* Merge 1.9.4
2017-04-09 Verclene<[email protected]>
* * e0c47b1be00c6db96f44ab3c34b17bb5b8bb6819
* 8.1.0.98: Remove some biomes from spawn list
* - may fix crash on world-loading
2017-04-09 Verclene<[email protected]>
* * afdc9896f03deac2cfa73a35714be9d6349f8742
* 8.1.0.97: Fix snow playing bug, fix #83
2017-04-09 Verclene<[email protected]>
* * d395c748d50cb3a1c3b8058c571dcb1f4ee7f11a
* 8.1.0.96: Add flags to MoveTowardsRestriction
2017-04-04 Verclene<[email protected]>
* * ba8666e37a429c12ab2a0918428254215b527362
* 8.1.0.95: Make backing to home work
2017-04-03 Verclene<[email protected]>
* * 60de0524454bbb53e2d935735cd020ef5f691ae5
* 8.1.0.94: Finalize mode class methods; Adjust some codes
2017-04-03 Verclene<[email protected]>
* * f733027d48c88ad6aeb37c6da3ce7cf71a1aee07
* 8.1.0.93: New AI: Backing to the home area
2017-02-15 Verclene<[email protected]>
* * 740fe780a1a68a686d94542e6f3adb33785a7346
* 8.1.0.92: Expand launchable version
2017-01-30 Verclene<[email protected]>
* * 353efcee79adec5a457ef0caae51f802829d6b9d
* 8.0.4.91: Apply SugarSpeed & Fix critical mistake
2016-12-08 Verclene<[email protected]>
* * 8909b56c6064edde866cc357df64eb81b3219136
* 8.0.4.90: Add getSugarConsumingMultiply(), will be used for increase pay
2016-12-01 Verclene<[email protected]>
* * 87e838293a85416de9ee9d46f9c4a4d7f03719fd
* 8.0.4.89: Fix translation methods
2016-11-24 Verclene<[email protected]>
* * 163d062a0049ec861456652a1c1e01a92c3a9f86
* 8.0.4.88: Add range check methods; Make maids not come too close to
* - the master, fix #71
2016-11-17 Verclene<[email protected]>
* * 0ce1376087165977036561e6a46b1c57ae5cbe7d
* 8.0.3.87: Remove teleporting
2016-11-17 Verclene<[email protected]>
* * 3c736d06cfc1e729f892721689d5159a04520267
* 8.0.3.86: Merge
* Merge branch 'master' of
* https://github.com/Verclene/LittleMaidReengaged.git
* Conflicts:
* src/main/java/net/blacklab/lmr/LittleMaidReengaged.java
* src/main/java/net/blacklab/lmr/client/gui/GuiIFF.java
* src/main/java/net/blacklab/lmr/entity/ai/EntityAILMHurtByTarget.java
* src/main/java/net/blacklab/lmr/entity/ai/EntityAILMNearestAttackableTarget.java
2016-08-17 Verclene<[email protected]>
* * 12650f04067fb9316fdd4cc2a153fbbd4ee435df
* Revert "7.2.0.83: Try adding delay before teleport"
* This reverts commit 14203bbcecb0dd132539b85c8432811a3f786a16.
* - Canceled modifying for teleport
2016-08-17 Verclene<[email protected]>
* * 6a196fe9adac1222e9aa3d259c837751719ad8fa
* Revert "7.2.0.84: Fix counting until teleport"
* This reverts commit e1726182e470aef62de3f8f5f8ea2914c65a719a.
2016-08-02 Verclene<[email protected]>
* * 73ab66c65299b8b9cb424b295e1de1d9ae0f7dd0
* 8.0.2.75: Fix(?) crash on resurrection, fix #75
2016-08-02 Verclene<[email protected]>
* * 8b6c910be700f55107740ac08d7fa5e998dea05b
* 7.2.0.85: Fix(?) crash on resurrection, fix #75
2016-07-18 Verclene<[email protected]>
* * e1726182e470aef62de3f8f5f8ea2914c65a719a
* 7.2.0.84: Fix counting until teleport
2016-07-18 Verclene<[email protected]>
* * 14203bbcecb0dd132539b85c8432811a3f786a16
* 7.2.0.83: Try adding delay before teleport
* - #12
* - need to adjust
2016-07-18 Verclene<[email protected]>
* * c414c2eedb7ad261c591b92f7c2e5c4e40362c88
* 7.2.0.82: Fix Fencer targeting
2016-07-18 Verclene<[email protected]>
* * 7584271f8a4a28ae536f0b96c63047245d4e37c2
* 7.2.0.81: Migrate Fencer vs Creeper check to Fencer.checkEntity()
2016-07-17 Verclene<[email protected]>
* * 33b60a31c023ca1938aade50cd716b9f590620e7
* 7.2.0.80: Fix range check on targeting, close #66
2016-07-15 Verclene<[email protected]>
* * 691ba8e43f29d33232be804374d6ed83384f074f
* 7.2.0.79: Fix clearing target bug when it's pushed out of...
* - tracking range, fix #59
* - Make maids not teleport while target is alive, fix #60
2016-07-15 Verclene<[email protected]>
* * 2602f52994c60b94175c310d6341c7b01b3dc082
* 7.2.0.78: Fix IFF is not saved properly;
* - Make ArmorStand 'FRIENDLY' by default
* - fix #49
2016-07-14 Verclene<[email protected]>
* * 08cc7874ce2e89e19cf6b7cf853207b4e79f54b0
* 7.2.0.77: Fix berserker targeting, fix #61
2016-07-14 Verclene<[email protected]>
* * 124a61e48d66ca4c52809a7ea9544c1a1de9179a
* 7.2.0.76: Fix interruption of targeting with bow, fix #58
2016-07-12 Verclene<[email protected]>
* * 3204b60adfa056019914d0ba5ff3ed1e74c340a6
* 7.2.0.75: Make Archers have no arrow stop targetting, close #56
2016-07-06 Verclene<[email protected]>
* * fcc652720ca677e0a1e6ea818dbb9bf3cc4437be
* 7.2.0.74: Fix incorrect changing into FarmPorter
* - fix #62
2016-07-06 Verclene<[email protected]>
* * b95d7bf5fc8dc535b150740a36a4e7ed034df40f
* 8.0.2.74: Fix incorrect mode changing
2016-07-04 Verclene<[email protected]>
* * ff1d83b89432a5c2f9471cc55e0bf6e6648f0a21
* 7.2.0.73: Remove incomparable selecting equipment, related with #51
2016-07-04 Verclene<[email protected]>
* * d08519ef9a17d5d27c78d1f30fd6edd702c7ec1a
* 7.2.0.72: Modify Debug method
2016-07-04 Verclene<[email protected]>
* * fade192ab2198b76ff16563ada3712393239fa2c
* 7.2.0.71: Modify registering spawn(by Legojer), fix #36
2016-07-02 Verclene<[email protected]>
* * f78331bd654d3beba42a0856a258cb07efbbeb4d
* 7.2.0.70: Increase first attack range, close #32
2016-07-02 Verclene<[email protected]>
* * e1b855945692e582145b33a392e71b18cb712a74
* ignoring fix
2016-07-01 Verclene<[email protected]>
* * efe1771ee71da330f564be6ee4731155d2048871
* 7.2.0.69: Expand searching entities range on some modes
2016-07-01 Verclene<[email protected]>
* * 71d7ca10e8b76eb903d4604e1506c2b4a7fecc82
* 8.0.2.68: Fix maids cannot walk through opened door, fix #47
2016-06-27 Verclene<[email protected]>
* * ea630a8351b282093a404c8d503f5cc38fcc6bdb
* 8.0.1.67: Trial disable AIAvoidPlayer
2016-06-26 Verclene<[email protected]>
* * 8303f8f1af9d0ecf7f631bfea8690cc5f368bfb6
* Modify README and mcmod.info
2016-06-26 Verclene<[email protected]>
* * ad398a25685e971aaa2c6625ae81b6464ae94078
* 8.0.1.66: Bump version for MC 1.9.4/1.10
2016-06-23 Verclene<[email protected]>
* * 3205253e846c9e5ccfc997fe166170f4865e282c
* 7.2.0.65: Add a method in EntityModes affects searching targets AI
2016-06-23 Verclene<[email protected]>
* * ee4ee6ae0c8a0acb649ab055f8489b3ce02c0446
* 7.2.0.64: Shorten range to start follow
2016-06-20 Verclene<[email protected]>
* * 6507a86ed19a83b7d0cb71cd1232c59d503bcaf1
* 7.2.0.63: Add flag canChangeModel() (will be used by add-on)
2016-06-20 Verclene<[email protected]>
* * 43c40f4abc728a67f9867a7c14c3b1c63bdb3802
* 7.2.0.62: Modify some inventory methods
2016-06-20 Verclene<[email protected]>
* * d4286203aa539002628f88dcbc10c519f3f1720d
* 7.2.0.61: Adjust checking reachable range
2016-06-18 Verclene<[email protected]>
* * a653dca14b877e4465e70a834640de5fd536b342
* 7.2.0.60: Fix looking angle, fix #42
2016-06-17 Verclene<[email protected]>
* * abc2b4092a94d4280087a2c1c7f5b2a30951f6d0
* 7.2.0.59: Modify Archer target resetting
2016-06-17 Verclene<[email protected]>
* * 42647ea9341c3dcc32f8fce2c853ccfea3422a40
* 7.2.0.58: Adjust Healer
2016-06-12 Verclene<[email protected]>
* * 26849794b831b11e808655540aa22f6561903967
* 7.2.0.57: Adjust Archer action
2016-06-12 Verclene<[email protected]>
* * b08123ec5c8ee156d42024223849837ab78a3316
* 7.2.0.56: Improved Pharmacist acting
2016-06-12 Verclene<[email protected]>
* * c5f33546a57815ee2891cbb783bd96e5cb9e5f22
* 7.2.0.55: Fix decrementing stack
2016-06-11 Verclene<[email protected]>
* * cac5659fa45c576a6f61df45f7dfc44622dcf2ed
* 7.2.0.54: Change mode automatically
2016-06-08 Verclene<[email protected]>
* * ac7a7b104d558f97e474abdc49c947cb41a01ba2
* 7.2.0.53: Fix removing equipment-slot items bug
2016-06-06 Verclene<[email protected]>
* * c27ccb4f257d307bdcd26ce9b3208b0c79d5511a
* 7.2.0.52: Make maids' offhand slot avaliable
2016-05-30 Verclene<[email protected]>
* * 5e6fb5644ca210f885488498cdca5a4b427f0a95
* 7.2.0.51: Add hand slots
2016-05-22 Verclene<[email protected]>
* * 08668112b14b18c8402cd6ba10e57a659d811dd8
* 7.2.0.50: Refactor Transformer
2016-05-22 Verclene<[email protected]>
* * 2d6846fb4144af53595c4be79e0539fe2003bdf6
* 7.2.0.49: Range adjust; Modify EntityModeBase#updateAITick()
* - updateAITick() only on active mode class will be called.
2016-05-20 Verclene<[email protected]>
* * 2b5e1068f621608c22b2151d5277be20196e5e39
* 7.2.0.48: New Range check helper
2016-05-15 Verclene<[email protected]>
* * 9fb95ab3b3e137ed39714dcab7b5f05f15a604a7
* 7.2.0.47: Decrease levelup awards
2016-05-15 Verclene<[email protected]>
* * 0824725be5856ef86817c4fb837e963c3c8d9541
* 7.2.0.46: Make maids not to drop slimeball.
2016-05-15 Verclene<[email protected]>
* * 8f6e212363d925f1dc5cb5672efe11be66dc5c52
* 7.2.0.45: Restrict maid picking up arrows; close #33
* - Maids can only pick up arrows which she shot when the difficulty is
* hard
2016-05-14 Verclene<[email protected]>
* * 9d59d3855ab4ef4bd488636c09fce816956dae9a
* 7.2.0.44: Remove manual jumping on joints
2016-05-14 Verclene<[email protected]>
* * 39b8a3dae52c3a60736d2cb0c216bd07bb59c1a1
* 7.2.0.43: Expanding tracking range of Fencer
2016-05-14 Verclene<[email protected]>
* * 49055f93f80b7962417ba229ca98816e4dc8f083
* 7.2.0.42: Fix armor rendering
2016-05-08 Verclene<[email protected]>
* * 58080146c38d9d9999d47d9e95d3eba16b1fa063
* 7.2.0.41: Merge pull request #40 from Verclene/issue#38
* Fix crash on setting path to TileEntity, fix #38
2016-05-08 Verclene<[email protected]>
* * 242b57eb866c0e8453edb55b9372f44451158ad6
* 7.1.8.41: Update verions
2016-05-08 Verclene<[email protected]>
* * 2394a217cf0430a444b3320034968de7e0258cab
* 7.1.8.41: Fix setting path to TileEntity, fix #38
2016-05-07 Verclene<[email protected]>
* * 26de278c67057a641bc6bc252471271ccb03b769
* 7.2.0.40: Change tracking range dynamically(2)
2016-05-05 Verclene<[email protected]>
* * ff0b3ae5e86708d9d1878d6a75562c0b4ae06916
* 7.2.0.39: Merge pull request #35 from Verclene/issue#34
* Includes:
* 7.1.7.39: Farmer: Fix planting beetroot bug; fix #34
2016-05-05 Verclene<[email protected]>
* * 444fe64e32e0eb52e5d292ff84cedceecfc26deb
* 7.1.7.39: Farmer: Fix planting beetroot bug; fix #34
2016-05-05 Verclene<[email protected]>
* * e6410353a18c318a83a25a4f13f8123a509cb4ae
* 7.2.0.38: Change tracking range dynamically
2016-05-01 Verclene<[email protected]>
* * d2f89aa3479fe1d3386511d36b382a6a67d2fa7a
* 7.2.0.37: Remove riding Player with saddle due to unsolvable bugs
2016-05-01 Verclene<[email protected]>
* * d427ad898481891afbd12ee7fef159a514f700d8
* 7.2.0.36: Modify show mode on GUI, close #16
2016-05-01 Verclene<[email protected]>
* * ead5da68f3e014747a5bcf6260bb33a96869fc39
* 7.1.6.35: Update versions
2016-04-30 Verclene<[email protected]>
* * 442433e80440fdfb290eb58c1797da9c98cec802
* 7.1.6.35: GuiInventory: Modify HP/Armor rendering
2016-04-30 Verclene<[email protected]>
* * f32bd66340f2ae99a5cd9edc0a9c901086e1efd0
* 7.1.6.34: AISwimming: Adjust
2016-04-30 Verclene<[email protected]>
* * e9c2c59409f042837f1dab45d43090d275fccd1b
* 7.1.6.33: Make DataParameters protected
2016-04-30 Verclene<[email protected]>
* * bfe3a9ef2fc4967191d6ec9fe18d7e11fae2ceb3
* 7.1.6.32: Migrate checking version to Forge updateJSON
2016-04-30 Verclene<[email protected]>
* * fa293d03e7b2a60cc767adb0dd678e92a719aeba
* 7.1.6.31: Fix riding to Player with saddle, fix #15
2016-04-28 Verclene<[email protected]>
* * b3fd41e9972e815c5cef0b0a9e8955298093c854
* 7.1.6.30: Inventory: Fix incorrect picking items up
* - Fix #17
* - Fix #27
2016-04-28 Verclene<[email protected]>
* * 30b0c0581c9bac29e7f80bae601f4f5b2db39889
* 7.1.6.29: AISwimming: some adjust
2016-04-28 Verclene<[email protected]>
* * 854e1f54493a6e79876f3880ea25adf68df521c9
* 7.1.6.28: Modify lang files, fix #26
2016-04-28 Verclene<[email protected]>
* * 29f18a5b11b46bc61a662f0cee6ea51da95b7db3
* 7.1.6.27: AISwimming: not to follow too close in the water,
* - excepts BegMove
* - close #18
2016-04-25 Verclene<[email protected]>
* * 019c9bc1906819591d15bb770837744441489cfb
* 7.1.6.26: Change some parameter types from Byte to Integer
2016-04-24 Verclene<[email protected]>
* * f2b8c794098aa943a2d8615154d754289853f89b
* 7.1.6.25: Modify developing environment loading, close #23
2016-04-23 Verclene<[email protected]>
* * d8e86eaee2af7bd82176723c080b403eb6f228cb
* 7.1.6.24: Merge pull request #24 from Verclene/issue#14
* Update zh_CN.lang; close #14
2016-04-23 Verclene<[email protected]>
* * acf6da44d876875b2a5d8b648cf07cd7a48099ee
* Update zh_CN.lang
* - close #14
2016-04-23 Verclene<[email protected]>
* * 5a6eacf4096524695285b0eb9355b3f158745b0b
* 7.1.6.23: Depends on the new VEvent system from EBLib
* - Update dependencies
* - Fix #22
2016-04-21 Verclene<[email protected]>
* * 2032c60abd534e08f86cb21dc33a42104fe58332
* 7.1.6.22: AIAOC: Add distance check
2016-04-21 Verclene<[email protected]>
* * c7dcaef27bafdb7a8860df0a7bcd89cf60f97842
* 5.1.6.21: Basic: Modify a Escort equipping item
2016-04-21 Verclene<[email protected]>
* * 1cac5c18314ad23ef07babdebf7747c5bf2c4d7c
* 5.1.6.20: TorchLayer: Fix NPE
2016-04-21 Verclene<[email protected]>
* * e76eeba2f4370f510694c691dd14b0a57829d066
* Update versions
2016-04-21 Verclene<[email protected]>
* * ce34a5ad406062d7e051fe54a13d121f918d05a1
* 7.1.5.19: EntityMarkerDummy: MultiPlayer Fix
2016-04-21 Verclene<[email protected]>
* * 736dbfa55233f3d1dd3d89c232b42eaea1806982
* 7.1.5.18: Fix swing rendering
2016-04-20 Verclene<[email protected]>
* * 3253f0f16579267248f93eb0a6a8b9e79dc5350a
* Update mcmod.info
2016-04-20 Verclene<[email protected]>
* * 3329ece7301ec11c4c9b875ba54e9e102292920e
* 7.1.4.17: Change Achievement page name
2016-04-20 Verclene<[email protected]>
* * 815aa319607b1b1d709029c4d1aa8830fe389302
* 7.1.4.16: Add charging(boost speed) to Fecner, close #10
2016-04-19 Verclene<[email protected]>
* * dd4c7e6fa406bac1d6098b3dd27b409e0fc7d4b7
* 7.1.4.15: Add charging(boost speed) to Fecner(trial)
2016-04-19 Verclene<[email protected]>
* * 2d90a935b97433cb4e45ac7c6c1ccdaf203bd80e
* 7.1.4.14: Modify healing wait
2016-04-19 Verclene<[email protected]>
* * 6b9751d278b2261a039f68d1f3e949768e189cdd
* 7.1.4.13: Modify Swimming NodeProcessor
2016-04-19 Verclene<[email protected]>
* * 79aad1c7c8e2b6017e6d896d1634dc172ba1cc1d
* 7.1.4.12: Modify maid picking item as imitate player, close #5
2016-04-18 Verclene<[email protected]>
* * b28d46c5bea01c683ba1d6ded586c24323bf29f0
* 7.1.4.11: Modify armor animations, fix #4
2016-04-17 Verclene<[email protected]>
* * be7410b94c87e454957c758e10f1923a72e70898
* 7.1.4.10: Add wait to healing
2016-04-17 Verclene<[email protected]>
* * 79d312fd68e794a9a742bbb1acf833c9b573b6ee
* 7.1.4.9: Add interval to playing maid sound
2016-04-17 Verclene<[email protected]>
* * 60a18b82f9002877adf80d15110e10198a5c5b91
* 7.1.4.8: Register lack attributes, fix #8
2016-04-17 Verclene<[email protected]>
* * d47220928bb425e4801e968fd96e5c53267c6964
* (7.1.4.7)Update versions info
2016-04-17 Verclene<[email protected]>
* * 00a27b07a276659bf74e16db7c4ee8875a881436
* 7.1.4.7: Modify GUI HP Rendering
2016-04-17 Verclene<[email protected]>
* * cac0d82bfbbed62b72dec9b214a35244650d1b75
* (7.1.3.6)Update mcmod.info
2016-04-17 Verclene<[email protected]>
* * d7945e319d4e24f7375bd25b3368441fde9c50f4
* 7.1.3.6: Add auto-fixing transparent maid
2016-04-16 Verclene<[email protected]>
* * c88efe8cd97047ffd3d4283a7e5ef3dcc79625a3
* 7.1.3.5: Fix transparent wild maid, close #3
2016-04-15 Verclene<[email protected]>
* * 756920e5ba174711af6a788737a8918586064d07
* Update versions
2016-04-15 Verclene<[email protected]>
* * bca132fa5d6519b883050d7c3bc2880869ac21d1
* 7.1.2.4: Merge pull request #2 from Verclene/issue#1
* Update zh_CN.lang by dlsts
2016-04-15 Verclene<[email protected]>
* * 55592413c4f430c53c743aefbf96fd7efa1affb1
* Update zh_CN.lang by dlsts
2016-04-15 Verclene<[email protected]>
* * bd66e558b0ef8eb8dd0d27b3f506f2e4dfd20145
* Update mcmod.info
2016-04-15 Verclene<[email protected]>
* * 679f6c60c28c219e8c9661555af5c75062f829b1
* 7.1.2.3: Remove swimming toggle; All maids can swim
2016-04-15 Verclene<[email protected]>
* * a5017d3821176ae50d5910ac930d0f176c4d3fbc
* 7.1.2.2: Switch registering seed to TriggerSelect
2016-04-15 Verclene<[email protected]>
* * f95e0cb98559f4126e3d972de07516da74482a71
* 7.1.2.1: TriggerSelect: Deprecate checkWeapon()
* - Use instead checkTrigger()
2016-04-15 Verclene<[email protected]>
* * 709fb9cac9106c3cb4845b8422936ae7a2c94beb
* 7.1.1.6: Adjust model & texture
2016-04-14 Verclene<[email protected]>
* * 92b2281805b87c1674f67c883dc517479d8e68ca
* 7.1.1.5: Add texture 'additional_Orign'
2016-04-14 Verclene<[email protected]>
* * 1e8324ba07e732b6ed7cfb0d24b43d5fc6b53b09
* 7.1.1.4: Remove unused resources
2016-04-14 Verclene<[email protected]>
* * 116cf003327803a2ca24be0196b656d0e2e492de
* 7.1.1.3: Inventory: Fix picking up items
2016-04-10 Verclene<[email protected]>
* * c16c2581737ce16ecccdf5aeb36f08840d1546b6
* 7.1.1.2: Adjust porting item
2016-04-10 Verclene<[email protected]>
* * fa76f6b925a1917a4fb4679d50af24fb7ebefc63
* 7.1.1.1: Add porting from LittleMaidMobNX(1.8.x)
2016-04-10 Verclene<[email protected]>
* * 0e02fe3fe0281b6da3c32f9200652c0c9814bba9
* 7.1.0.7: Rename some NBT keys; Fix mcmod.info
2016-04-10 Verclene<[email protected]>
* * 3068d74f9c652f58b90aefedff7161b9545c60e7