forked from RareScrap/mcp_ru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethods.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 4 columns, instead of 5 in line 1.
4820 lines (4820 loc) · 363 KB
/
methods.csv
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
searge,name,side,desc
func_100011_g,getIsPotionDurationMax,0,Возвращает true, если эффект зелья длится бесконечно.
func_100012_b,setPotionDurationMax,0, Устанавливает бесконечную длительность зелья.
func_100015_a,isKeyDown,0, Возвращает true, если указанный бинд клавиш нажат в настоящее время.
func_102007_a,canInsertItem,2,"Возвращает true, если возможно автоматически вставить указанный предмет в указанный слот с указанной стороны.\n@param slotId номер слота.\n@param itemstack стак с предметом, который пытаются автоматически поместить в слот.\n@param side сторона блока, с которой находится слот (TODO: стороны)"
func_102008_b,canExtractItem,2,"Возвращает true, если возможно автоматически извлеч указанный предмет из указанного слота с указанной стороны.\n@param slotId номер слота.\n@param itemstack стак с предметом, который пытаются автоматически извлеч из слота.\n@param side сторона блока, с которой находится слот (TODO: стороны)"
func_104002_bU,isNoDespawnRequired,2,
func_104055_i,setForceGamemode,1,
func_104056_am,getForceGamemode,2,
func_104112_b,saveExtraData,2,"Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unimplemented."
func_104140_m,saveChunkData,2,saves chunk data - currently only called during execution of the Save All command
func_110123_P,onChunkLoad,2,
func_110124_au,getUniqueID,2,
func_110125_a,setParticleIcon,0,
func_110128_b,onBroken,2,Called when this entity is broken. Entity parameter may be null.
func_110130_b,getKnotForBlock,2,
func_110131_b,removeFrameFromMap,2,Removes the dot representing this frame's position from the map when the item frame is broken.
func_110138_aP,getMaxHealth,2,
func_110139_bj,getAbsorptionAmount,2,
func_110140_aT,getAttributeMap,2,
func_110142_aN,getCombatTracker,2,
func_110143_aJ,getHealth,2,
func_110144_aD,getLastAttacker,2,
func_110145_l,dismountEntity,2,Moves the entity to a position out of the way of its mount.
func_110147_ax,applyEntityAttributes,2,
func_110148_a,getEntityAttribute,2,
func_110149_m,setAbsorptionAmount,2,
func_110159_bB,updateLeashedState,2,"Applies logic related to leashes, for example dragging the entity or breaking the leash."
func_110160_i,clearLeashed,2,Removes the leash from this entity. Second parameter tells whether to send a packet to surrounding players.
func_110161_a,onSpawnWithEgg,2,
func_110162_b,setLeashedToEntity,2,Sets the entity to be leashed to.\n \n@param entityIn The entity to be tethered to\n@param sendAttachNotification Whether to send an attaching notification packet to surrounding players.
func_110163_bv,enablePersistence,2,Enable the Entity persistence
func_110164_bC,allowLeashing,2,
func_110165_bF,recreateLeash,2,
func_110166_bE,getLeashedToEntity,2,
func_110167_bD,getLeashed,2,
func_110171_b,setHomeArea,2,
func_110172_bL,getHomePosition,2,Returns the chunk coordinate object of the home position.
func_110173_bK,isWithinHomeDistanceCurrentPosition,2,
func_110174_bM,getMaximumHomeDistance,2,
func_110175_bO,hasHome,2,Returns whether a home area is defined for this entity.
func_110176_b,isWithinHomeDistance,2,
func_110177_bN,detachHome,2,
func_110195_a,addGrowth,2,"""Adds the value of the parameter times 20 to the age of this entity. If the entity is an adult (if the entity's age is greater than 0), it will have no effect."""
func_110198_t,increaseTemper,2,
func_110199_f,openGUI,2,
func_110200_cJ,canMate,2,"Return true if the horse entity ready to mate. (no rider, not riding, tame, adult, not steril...)"
func_110202_bQ,getHorseVariant,2,
func_110204_cc,isEatingHaystack,2,
func_110206_u,setJumpPower,2,
func_110207_m,setChested,2,
func_110208_b,setHorseWatchableBoolean,2,
func_110209_cd,isRearing,2,
func_110212_cp,getVariantTexturePaths,0,
func_110214_p,setHorseType,2,
func_110215_cj,getHorseJumpStrength,2,
func_110216_r,spawnHorseParticles,0,"""Spawns particles for the horse entity. par1 tells whether to spawn hearts. If it is false, it spawns smoke."""
func_110217_cl,getAngrySoundName,2,
func_110218_cm,getMaxTemper,2,
func_110219_q,setRearing,2,
func_110220_cK,makeHorseRear,2,
func_110221_n,setHasReproduced,2,
func_110222_cv,isSterile,2,Return true if the horse entity is sterile (Undead || Mule)
func_110223_p,getRearingAmount,0,
func_110224_ci,dropChests,2,
func_110227_p,setEatingHaystack,2,
func_110228_bR,isAdultHorse,2,
func_110229_cs,canCarryChest,2,Return true if the horse entity can carry a chest.
func_110231_cz,makeHorseRearWithSound,2,
func_110233_w,getHorseWatchableBoolean,2,
func_110234_j,setHorseTamed,2,
func_110235_q,setHorseVariant,2,
func_110238_s,setTemper,2,
func_110240_a,dropItemsInChest,2,
func_110243_cf,getHasReproduced,2,
func_110244_cA,dropChestItems,2,
func_110246_bZ,isHorseJumping,2,
func_110247_cG,setHorseTexturePaths,0,
func_110248_bS,isTame,2,
func_110249_cI,openHorseMouth,2,
func_110250_a,getClosestHorse,2,
func_110251_o,setHorseSaddled,2,
func_110252_cg,getTemper,2,
func_110254_bY,getHorseSize,2,
func_110255_k,setHorseJumping,2,
func_110256_cu,isUndead,2,"Used to know if the horse can be leashed, if he can mate, or if we can interact with him"
func_110257_ck,isHorseSaddled,2,
func_110258_o,getGrassEatingAmount,0,
func_110259_cr,canWearArmor,2,Return true if the horse entity can wear an armor
func_110260_d,getHorseArmorIndex,2,"0 = iron, 1 = gold, 2 = diamond"
func_110261_ca,isChested,2,
func_110262_ch,prepareChunkForSpawn,2,
func_110263_g,setTamedBy,2,
func_110264_co,getHorseTexture,0,
func_110265_bP,getHorseType,2,"Returns the horse type. 0 = Normal, 1 = Donkey, 2 = Mule, 3 = Undead Horse, 4 = Skeleton Horse"
func_110297_a_,verifySellingItem,2,"Notifies the merchant of a possible merchantrecipe being fulfilled or not. Usually, this is just a sound byte being played depending if the suggested itemstack is not null."
func_110298_a,displayGUIHorse,2,
func_110303_q,getLocationCape,0,
func_110304_a,getDownloadImageSkin,0,
func_110306_p,getLocationSkin,0,
func_110311_f,getLocationSkin,0,
func_110317_t,isRidingHorse,0,
func_110318_g,sendHorseJump,0,
func_110319_bJ,getHorseJumpPower,0,
func_110322_i,sendHorseInteraction,0,
func_110326_a,setRecordPlaying,0,
func_110327_a,renderIcons,0,
func_110430_a,setEntityActionState,2,
func_110432_I,getSession,0,
func_110434_K,getTextureManager,0,
func_110435_P,addDefaultResourcePack,0,
func_110436_a,refreshResources,0,
func_110437_J,getProxy,0,
func_110438_M,getResourcePackRepository,0,
func_110441_Q,updateDisplayMode,0,
func_110442_L,getResourceManager,0,
func_110454_ao,getServerProxy,2,
func_110455_j,getOpPermissionLevel,2,
func_110462_b,getPackFormat,0,
func_110468_c,getFrameIndex,0,
func_110469_d,getFrameTime,0,
func_110470_b,frameHasTime,0,
func_110471_a,getFrameHeight,0,
func_110472_a,getFrameTimeSingle,0,
func_110473_c,getFrameCount,0,
func_110474_b,getFrameWidth,0,
func_110479_a,getTextureBlur,0,
func_110480_b,getTextureClamp,0,
func_110483_a,getSectionName,0,The name of this section type as it appears in JSON.
func_110492_a,parseAnimationFrame,0,
func_110495_a,hasNoTime,0,
func_110496_c,getFrameIndex,0,
func_110497_b,getFrameTime,0,
func_110503_a,parseMetadataSection,0,
func_110504_a,registerMetadataSectionType,0,
func_110505_a,getGson,0,Returns a Gson instance with type adapters registered for metadata sections.
func_110514_c,getResourcePack,0,
func_110515_d,getResourcePackName,0,
func_110516_a,updateResourcePack,0,
func_110517_b,closeResourcePack,0,
func_110518_a,bindTexturePackIcon,0,
func_110519_e,getTexturePackDescription,0,
func_110526_a,getMetadata,0,
func_110527_b,getInputStream,0,
func_110528_c,hasMetadata,0,
func_110536_a,getResource,0,
func_110537_b,getLocationMcmeta,0,
func_110538_a,addResourcePack,0,
func_110541_a,reloadResources,0,
func_110542_a,registerReloadListener,0,
func_110543_a,clearResources,0,
func_110544_b,notifyReloadListeners,0,
func_110545_a,reloadResourcePack,0,
func_110549_a,onResourceManagerReload,0,
func_110550_d,tick,0,
func_110551_a,loadTexture,0,
func_110552_b,getGlTextureId,0,
func_110564_a,updateDynamicTexture,0,
func_110565_c,getTextureData,0,
func_110569_e,initMissingImage,0,
func_110571_b,loadTextureAtlas,0,
func_110572_b,getAtlasSprite,0,
func_110573_f,registerIcons,0,
func_110577_a,bindTexture,0,
func_110578_a,getDynamicTextureLocation,0,
func_110579_a,loadTexture,0,
func_110580_a,loadTickableTexture,0,
func_110581_b,getTexture,0,
func_110586_a,getPackImage,0,
func_110587_b,getResourceDomains,0,
func_110589_b,resourceExists,0,
func_110590_a,getInputStream,0,
func_110591_a,getInputStreamByName,0,
func_110592_c,locationToName,0,
func_110593_b,hasResourceName,0,
func_110594_c,logNameNotLowercase,0,
func_110595_a,getRelativeName,0,
func_110596_a,readMetadata,0,
func_110599_c,getResourcePackZipFile,0,
func_110605_c,getResourceStream,0,
func_110609_b,getRepositoryEntriesAll,0,
func_110611_a,updateRepositoryEntriesAll,0,
func_110612_e,getDirResourcepacks,0,
func_110613_c,getRepositoryEntries,0,
func_110614_g,getResourcePackFiles,0,
func_110616_f,fixDirResourcepacks,0,
func_110623_a,getResourcePath,0,
func_110624_b,getResourceDomain,0,
func_110646_a,getTextWithoutFormattingCodes,0,"Returns a copy of the given string, with formatting codes stripped away."
func_110647_a,getOSType,0,
func_110661_a,parseDouble,2,"Parses a double from the given string. Throws if the string could not be parsed as a double, or if it's not between the given min and max values."
func_110662_c,parseBoolean,2,"Parses a boolean value from the given string. Throws if the string does not contain a boolean value. Accepted values are (case-sensitive): ""true"", ""false"", ""0"", ""1"".\n \n@param str accepted values are: true, false, 1, 0"
func_110664_a,parseDouble,2,"Parses a double from the given string. Throws if the string could not be parsed as a double, or if it's less than the given minimum value."
func_110665_a,clamp_double,2,
func_110666_a,clamp_coord,2,
func_110682_a,setBoxRotation,0,Sets the rotations for a ModelRenderer in the ModelHorse class.
func_110683_a,updateHorseRotation,0,Fixes and offsets a rotation in the ModelHorse class.
func_110738_j,isRidingHorse,0,"Checks if the player is riding a horse, used to chose the GUI to open"
func_110775_a,getEntityTexture,0,Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
func_110776_a,bindTexture,0,
func_110777_b,bindEntityTexture,0,
func_110813_b,canRenderName,0,Test if the entity name must be rendered
func_110934_a,addSprite,0,
func_110935_a,getCurrentWidth,0,
func_110936_b,getCurrentHeight,0,
func_110966_b,setIconWidth,0,
func_110967_i,getOriginY,0,"Returns the Y position of this icon on its texture sheet, in pixels."
func_110968_a,setFramesTextureData,0,
func_110969_c,setIconHeight,0,
func_110970_k,getFrameCount,0,
func_110971_a,initSprite,0,
func_110985_a,updateAnaglyph,0,
func_110986_a,readImageData,0,
func_110987_a,uploadTextureImage,0,
func_110988_a,uploadTexture,0,
func_110989_a,uploadTextureImageAllocate,0,
func_110990_a,copyToBuffer,0,
func_110991_a,allocateTexture,0,
func_110993_a,uploadTextureImageSubImpl,0,
func_110994_a,copyToBufferPos,0,
func_110995_a,uploadTextureImageSub,0,
func_110996_a,glGenTextures,0,
func_110997_a,setTextureClamped,0,
func_111108_a,getAttributeUnlocalizedName,2,
func_111109_a,clampValue,2,
func_111110_b,getDefaultValue,2,
func_111111_c,getShouldWatch,2,
func_111112_a,setShouldWatch,2,
func_111116_f,getDescription,2,
func_111117_a,setDescription,2,
func_111121_a,applyModifier,2,
func_111123_a,getAttribute,2,Get the Attribute this is an instance of
func_111124_b,removeModifier,2,
func_111125_b,getBaseValue,2,
func_111126_e,getAttributeValue,2,
func_111127_a,getModifier,2,"Returns attribute modifier, if any, by the given UUID"
func_111128_a,setBaseValue,2,
func_111129_g,computeValue,2,
func_111130_a,getModifiersByOperation,2,
func_111131_f,flagForUpdate,2,
func_111145_d,getWatchableObjectFloat,2,
func_111146_a,getAllAttributes,2,
func_111147_b,applyAttributeModifiers,2,
func_111148_a,removeAttributeModifiers,2,
func_111149_a,addAttributeInstance,2,
func_111150_b,registerAttribute,2,"Registers an attribute with this AttributeMap, returns a modifiable AttributeInstance associated with this map"
func_111151_a,getAttributeInstance,2,
func_111152_a,getAttributeInstanceByName,2,
func_111160_c,getWatchedAttributes,2,
func_111161_b,getAttributeInstanceSet,2,
func_111164_d,getAmount,2,
func_111165_e,isSaved,2,@see #isSaved
func_111166_b,getName,2,
func_111167_a,getID,2,
func_111168_a,setSaved,2,@see #isSaved
func_111169_c,getOperation,2,
func_111175_f,getTargetDistance,2,
func_111184_a,registerPotionAttributeModifier,2,Used by potions to register the attribute they modify.
func_111185_a,applyAttributesModifiersToEntity,2,
func_111187_a,removeAttributesModifiersFromEntity,2,
func_111190_b,sendMetadataToAllAssociatedPlayers,2,"Sends the entity metadata (DataWatcher) and attributes to all players tracking this entity, including the entity itself if a player."
func_111194_a,processChunk,2,This method currently only increases chunk inhabited time. Extension is possible in next versions
func_111196_a,increaseInhabitedTime,2,Increases chunk inhabited time every 8000 ticks
func_111205_h,getItemAttributeModifiers,2,"Gets a map of item attribute modifiers, used by ItemSword to increase hit damage."
func_111206_d,setTextureName,2,
func_111207_a,itemInteractionForEntity,2,"Returns true if the item can be used on the given entity, e.g. shears on sheep.\n \n@param stack the item stack of the item being used\n@param player the player who used the item\n@param target the target we hit with the item in hand"
func_111208_A,getIconString,0,Returns the string associated with this Item's Icon.
func_111225_m,getRelevantEnchantmentTypes,0,Returns the enchantment types relevant to this tab
func_111229_a,setRelevantEnchantmentTypes,2,Sets the enchantment types for populating this tab with enchanting books
func_111238_b,canBeHovered,0,"Actualy only call when we want to render the white square effect over the slots. Return always True, except for the armor slot of the Donkey/Mule (we can't interact with the Undead and Skeleton horses)"
func_111257_a,writeBaseAttributeMapToNBT,2,"Creates an NBTTagList from a BaseAttributeMap, including all its AttributeInstances"
func_111258_a,applyModifiersToAttributeInstance,2,
func_111259_a,readAttributeModifierFromNBT,2,Creates an AttributeModifier from an NBTTagCompound
func_111261_a,writeAttributeInstanceToNBT,2,"Creates an NBTTagCompound from an AttributeInstance, including its AttributeModifiers"
func_111262_a,writeAttributeModifierToNBT,2,Creates an NBTTagCompound from an AttributeModifier
func_111269_d,getPathSearchRange,2,Gets the maximum distance that the path finding will search in.
func_111270_a,union,2,
func_111271_a,getUnicodePageLocation,0,
func_111272_d,readFontTexture,0,
func_111282_a,interactWithEntity,2,
func_111283_C,getAttributeModifiers,2,Gets the attribute modifiers for this ItemStack.\nWill check for an NBT tag list containing modifiers for the stack.
func_111285_a,getUsername,0,
func_111286_b,getSessionID,0,
func_120011_ar,setGuiEnabled,1,
func_120016_a,createServerGui,1,Creates the server GUI and sets it visible for the user.
func_120018_d,getLogComponent,1,
func_120019_b,getStatsComponent,1,Generates new StatsComponent and returns it.
func_120020_c,getPlayerListComponent,1,Generates new PlayerListComponent and returns it.
func_130001_d,getCurrentMoonPhaseFactor,2,"gets the current fullness of the moon expressed as a float between 1.0 and 0.0, in steps of .25"
func_130002_c,interactFirst,2,First layer of player interaction
func_130010_a,getOriginX,0,"Returns the X position of this icon on its texture sheet, in pixels."
func_130011_c,setLastAttacker,2,
func_130014_f_,getEntityWorld,2,
func_130071_aq,getCurrentTimeMillis,2,
func_130072_d,getAnimationFrame,0,
func_130073_e,getFrameIndexSet,0,
func_130077_b,getPackName,0,
func_130086_a,getTextureType,0,
func_130087_a,getResourceLocation,0,
func_130088_a,loadTextureMap,0,
func_130098_m,hasAnimationMetadata,0,
func_130099_d,allocateFrameTextureData,0,
func_130102_n,resetSprite,0,
func_130103_l,clearFramesTextureData,0,
func_130105_g,getMinecraftStartTimeMillis,2,Returns the saved value of System#currentTimeMillis when the game started
func_135016_M,getLanguageManager,0,
func_135018_a,getLanguages,0,
func_135021_a,loadLocaleData,0,
func_135022_a,loadLocaleDataFiles,0,"par2 is a list of languages. For each language $L and domain $D, attempts to load the resource $D:lang/$L.lang"
func_135023_a,formatMessage,0,"Calls String.format(translateKey(key), params)"
func_135024_b,checkUnicode,0,
func_135025_a,isUnicode,0,
func_135026_c,translateKeyPrivate,0,"Returns the translation, or the key itself if the key could not be translated."
func_135028_a,loadLocaleData,0,par1 is a list of Resources
func_135034_a,getLanguageCode,0,
func_135035_b,isBidirectional,0,
func_135040_d,getLanguages,0,
func_135041_c,getCurrentLanguage,0,
func_135042_a,isCurrentLocaleUnicode,0,
func_135043_a,parseLanguageMetadata,0,
func_135044_b,isCurrentLanguageBidirectional,0,
func_135045_a,setCurrentLanguage,0,
func_135051_a,setLocale,0,
func_135052_a,format,0,"format(a, b) is equivalent to String.format(translate(a), b). Args: translationKey, params..."
func_135055_a,getResourceDomains,0,
func_135056_b,getAllResources,0,
func_135058_a,getPackMetadata,0,
func_135063_a,replaceWith,0,Replaces all the current instance's translations with the ones that are passed in.
func_135064_c,tryTranslateKey,2,Tries to look up a translation for the given key; spits back the key if no result was found.
func_140005_i,switchToRealms,0,
func_142008_O,shouldSetPosAfterLoading,2,
func_142012_a,isOnTeam,2,Returns true if the entity is on a specific team.
func_142013_aG,getLastAttackerTime,2,
func_142014_c,isOnSameTeam,2,
func_142015_aE,getRevengeTimer,2,
func_142020_c,setClientBrand,0,
func_142021_k,getClientBrand,0,
func_142049_d,removeAllModifiers,0,
func_142053_d,formatString,2,
func_142054_a,isSameTeam,2,Same as ==
func_143004_u,markPlayerActive,2,
func_143006_e,setPlayerIdleTimeout,2,
func_143007_ar,getMaxPlayerIdleMinutes,2,
func_143011_b,readStructureFromNBT,2,(abstract) Helper method to read subclass data from NBT
func_143012_a,writeStructureToNBT,2,(abstract) Helper method to write subclass data to NBT
func_143016_a,registerVillagePieces,2,
func_143025_a,getStructureName,2,
func_143031_a,registerStructureComponent,2,
func_143034_b,registerStructure,2,
func_143045_a,registerScatteredFeaturePieces,2,
func_143046_a,registerStrongholdPieces,2,
func_143048_a,registerStructurePieces,2,
func_143049_a,registerNetherFortressPieces,2,
func_145747_a,addChatMessage,2,"Notifies this sender of some sort of information. This is for messages intended to display to the user. Used for typical output (like ""you asked for whether or not this game rule is set, so here's your answer""), warnings (like ""I fetched this block for you by ID, but I'd like you to know that every time you do this, I die a little inside""), and errors (like ""it's not called iron_pixacke, silly"")."
func_145748_c_,getFormattedCommandSenderName,2,
func_145749_h,getLastOutput,2,Returns the lastOutput.
func_145752_a,setCommand,2,Sets the command.
func_145753_i,getCustomName,2,Returns the customName of the command block.
func_145758_a,writeDataToNBT,2,Stores data to NBT format.
func_145759_b,readDataFromNBT,2,Reads NBT formatting and stored data into variables.
func_145760_g,getSuccessCount,2,returns the successCount int.
func_145769_d,setEntityId,2,
func_145770_h,isInRangeToRender3d,0,
func_145771_j,pushOutOfBlocks,2,
func_145772_a,getExplosionResistance,2,Called for explosions caused by Entities instead of the method on Block. Default forwards to Block.
func_145773_az,doesEntityNotTriggerPressurePlate,2,Return whether this entity should NOT trigger a pressure plate or a tripwire.
func_145775_I,doBlockCollisions,2,
func_145776_H,getSwimSound,2,
func_145777_O,getSplashSound,2,
func_145778_a,dropItemWithOffset,2,
func_145779_a,dropItem,2,"Выбрасывает указанный предмет прямо под собой в мир, в котором находится ентити.\n@param itemIn предмет, который нужно выбросить в мир.\n@param size количество выбрасываемых предметов.\n@return Возвращает entityItem, которую оставил после себя entity."
func_145780_a,playStepSound,2,
func_145782_y,getEntityId,2,
func_145797_a,setOwner,2,
func_145798_i,getOwner,2,
func_145799_b,setThrower,2,
func_145800_j,getThrower,2,
func_145805_f,getBlock,2,
func_145806_a,setHurtEntities,2,
func_145807_e,getWorldObj,0,
func_145817_o,getDefaultDisplayTile,2,
func_145818_k_,isCustomInventoryName,2,Returns if the inventory is named
func_145820_n,getDisplayTile,2,
func_145825_b,getInventoryName,2,Returns the name of the inventory
func_145826_a,addMapping,2,Adds a new two-way mapping between the class and its string name in both hashmaps.
func_145827_c,createAndLoadEntity,2,Creates a new entity and loads its data from the specified NBT.
func_145828_a,addInfoToCrashReport,2,
func_145829_t,validate,2,validates a tile entity
func_145830_o,hasWorldObj,2,Returns true if the worldObj isn't null.
func_145831_w,getWorld,2,Returns the worldObj for this tileEntity.
func_145832_p,getBlockMetadata,2,
func_145833_n,getMaxRenderDistanceSquared,0,
func_145834_a,setWorldObj,2,Sets the worldObj for this tileEntity.
func_145835_a,getDistanceSq,0,Returns the square of the distance between this entity and the passed in coordinates.
func_145836_u,updateContainingBlockInfo,2,
func_145837_r,isInvalid,2,
func_145838_q,getBlockType,2,Gets the block type at the location of this entity (client-only).
func_145839_a,readFromNBT,2,
func_145841_b,writeToNBT,2,
func_145842_c,receiveClientEvent,2,
func_145843_s,invalidate,2,invalidates a tile entity
func_145844_m,getDescriptionPacket,2,Overriden in a sign to provide the text.
func_145845_h,updateEntity,2,
func_145861_a,getStoredBlockID,2,
func_145864_c,getPistonOrientation,2,
func_145866_f,clearPistonTileEntity,2,"removes a piston's tile entity (and if the piston is moving, stops it)"
func_145867_d,shouldPistonHeadBeRendered,0,
func_145868_b,isExtending,2,Returns true if a piston is extending
func_145877_a,changePitch,2,change pitch by -> (currentPitch + 1) % 25
func_145878_a,triggerNote,2,plays the stored note
func_145888_j,isOnTransferCooldown,2,
func_145896_c,setTransferCooldown,2,
func_145903_a,setSkullRotation,2,
func_145904_a,getSkullType,2,
func_145906_b,getSkullRotation,0,
func_145913_a,setEditable,0,Sets the sign's isEditable flag to the specified parameter.
func_145914_a,getIsEditable,2,
func_145934_k,canBrew,2,
func_145935_i,getBrewTime,2,
func_145938_d,setBrewTime,0,
func_145939_j,getFilledSlots,2,Returns an integer with each bit specifying whether that slot of the stand contains a potion
func_145940_l,brewPotions,2,
func_145948_k,canSmelt,2,"Returns true if the furnace can smelt an item, i.e. has a source item, destination stack isn't full, etc."
func_145949_j,smeltItem,2,Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack
func_145950_i,isBurning,2,Furnace isBurning
func_145951_a,setCustomInventoryName,2,
func_145952_a,getItemBurnTime,2,"Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't fuel"
func_145953_d,getCookProgressScaled,0,Returns an integer between 0 and the passed value representing how close the current item is to being completely cooked
func_145954_b,isItemFuel,2,
func_145955_e,getBurnTimeRemainingScaled,0,"Returns an integer between 0 and the passed value representing how much burn time is left on the current fuel item, where 0 means that the item is exhausted and the passed value means that the item is fresh"
func_145965_a,getFlowerPotItem,2,
func_145966_b,getFlowerPotData,2,
func_145976_a,setCustomName,2,
func_145977_a,isSameTypeChestAt,2,"Test if the block is a chest, with the same type (normal, trapped, ...)"
func_145979_i,checkForAdjacentChests,2,Performs the check for adjacent chests to determine if this chest is double or not.
func_145980_j,getChestType,2,
func_145995_a,setOutputSignal,2,
func_145996_a,getOutputSignal,2,
func_145998_l,getLevels,2,Return the levels of this beacon's pyramid.
func_146001_d,setPrimaryEffect,2,
func_146002_i,shouldBeamRender,0,
func_146004_e,setSecondaryEffect,2,
func_146006_k,getSecondaryEffect,2,Return the secondary potion effect given by this beacon.
func_146007_j,getPrimaryEffect,2,Return the primary potion effect given by this beacon.
func_146023_a,getStrVsBlock,2,
func_146024_c,getInventorySlotContainItemAndDamage,0,
func_146026_a,consumeInventoryItem,2,"removed one item of specified Item from inventory (if it is in a stack, the stack size will reduce with 1)"
func_146027_a,clearInventory,2,"Removes all items from player inventory, including armor"
func_146028_b,hasItem,2,Checks if a specified Item is inside the inventory
func_146029_c,getInventorySlotContainItem,2,
func_146030_a,setCurrentItem,0,
func_146031_a,setChestTileEntity,2,
func_146034_e,handleHookRetraction,2,
func_146035_c,handleHookCasting,2,
func_146068_u,getDropItem,2,
func_146080_bZ,getCarriedBlock,2,Gets the block carried by this Enderman
func_146081_a,setCarriedBlock,2,Sets the block carried by this Enderman
func_146082_f,setInLove,2,
func_146086_d,setHorseArmorStack,2,Set horse armor stack (for example: new ItemStack(Items.iron_horse_armor))
func_146094_a,getUUID,2,Gets a players UUID given their GameProfie
func_146096_a,getBreakSpeed,2,Returns how strong the player is against the specified block at this moment
func_146099_a,canHarvestBlock,2,Checks if the player has the ability to harvest a block (checks current inventory item for a tool if necessary)
func_146100_a,displayGUIEditSign,2,Displays the GUI for editing a sign. Args: tileEntitySign
func_146103_bH,getGameProfile,2,Returns the GameProfile for this player
func_146105_b,addChatComponentMessage,2,
func_146107_m,getStatFileWriter,0,
func_146110_a,drawModalRectWithCustomSizedTexture,0,"Draws a textured rectangle at z = 0. Args: x, y, u, v, width, height, textureWidth, textureHeight"
func_146111_b,drawButtonForegroundLayer,0,
func_146112_a,drawButton,0,Draws this button to the screen.
func_146113_a,playPressSound,0,
func_146114_a,getHoverState,0,"Returns 0 if the button is disabled, 1 if the mouse is NOT hovering over this button and 2 if it IS hovering over this button."
func_146115_a,isMouseOver,0,Whether the mouse cursor is currently over the button.
func_146116_c,mousePressed,0,Returns true if the mouse has been pressed on this control. Equivalent of MouseListener.mousePressed(MouseEvent e).
func_146117_b,getButtonWidth,0,
func_146118_a,mouseReleased,0,Fired when the mouse button is released. Equivalent of MouseListener.mouseReleased(MouseEvent e).
func_146119_b,mouseDragged,0,Fired when the mouse button is dragged. Equivalent of MouseListener.mouseDragged(MouseEvent e).
func_146136_c,returnEnumOptions,0,
func_146158_b,getChatGUI,0,"returns a pointer to the persistant Chat GUI, containing all previous chat messages and such"
func_146159_a,drawLabel,0,
func_146160_b,drawLabelBackground,0,
func_146175_b,deleteFromCursor,0,"delete the selected text, otherwsie deletes characters from either side of the cursor. params: delete num"
func_146176_q,getVisible,0,returns true if this textbox is visible
func_146177_a,deleteWords,0,Deletes the specified number of words starting at the cursor position. Negative numbers will delete words left of the cursor.
func_146178_a,updateCursorCounter,0,Increments the cursor counter
func_146179_b,getText,0,Returns the contents of the textbox
func_146180_a,setText,0,Sets the text of the textbox
func_146181_i,getEnableBackgroundDrawing,0,get enable drawing background and outline
func_146182_d,moveCursorBy,0,Moves the text cursor by a specified number of characters and clears the selection
func_146183_a,getNthWordFromPos,0,"gets the position of the nth word. N may be negative, then it looks backwards. params: N, position"
func_146184_c,setEnabled,0,
func_146185_a,setEnableBackgroundDrawing,0,enable drawing background and outline
func_146186_n,getSelectionEnd,0,"the side of the selection that is not the cursor, may be the same as the cursor"
func_146187_c,getNthWordFromCursor,0,"see @getNthNextWordFromPos() params: N, position"
func_146188_c,drawCursorVertical,0,draws the vertical line cursor in the textbox
func_146189_e,setVisible,0,Sets whether or not this textbox is visible
func_146190_e,setCursorPosition,0,sets the position of the cursor to the provided index
func_146191_b,writeText,0,"replaces selected text, or inserts text at the position on the cursor"
func_146192_a,mouseClicked,0,"Args: x, y, buttonClicked"
func_146193_g,setTextColor,0,Sets the text colour for this textbox (disabled text will not use this colour)
func_146194_f,drawTextBox,0,Draws the textbox
func_146195_b,setFocused,0,Sets focus to this gui element
func_146196_d,setCursorPositionZero,0,sets the cursors position to the beginning
func_146198_h,getCursorPosition,0,returns the current position of the cursor
func_146199_i,setSelectionPos,0,Sets the position of the selection anchor (i.e. position the selection was started at)
func_146200_o,getWidth,0,returns the width of the textbox depending on if background drawing is enabled
func_146201_a,textboxKeyTyped,0,Call this method from your GuiScreen to process the keys into the textbox
func_146202_e,setCursorPositionEnd,0,sets the cursors position to after the text
func_146203_f,setMaxStringLength,0,
func_146204_h,setDisabledTextColour,0,
func_146205_d,setCanLoseFocus,0,if true the textbox can lose focus by clicking elsewhere on the screen
func_146206_l,isFocused,0,Getter for the focused field
func_146207_c,getSelectedText,0,returns the text between the cursor and selectionEnd
func_146208_g,getMaxStringLength,0,returns the maximum number of character that can be contained in this textbox
func_146227_a,printChatMessage,0,
func_146228_f,getChatWidth,0,
func_146229_b,scroll,0,Scrolls the chat by the given number of lines.
func_146230_a,drawChat,0,
func_146231_a,clearChatMessages,0,Clears the chat.
func_146232_i,getLineCount,0,
func_146233_a,calculateChatboxWidth,0,
func_146234_a,printChatMessageWithOptionalDeletion,0,"prints the ChatComponent to Chat. If the ID is not 0, deletes an existing Chat Line of that ID from the GUI"
func_146235_b,formatColors,0,
func_146236_a,getChatComponent,0,Gets the chat component under the mouse
func_146237_a,setChatLine,0,
func_146238_c,getSentMessages,0,Gets the list of messages previously sent through the chat GUI
func_146239_a,addToSentMessages,0,"Adds this string to the list of sent messages, for recall using the up/down arrow keys"
func_146240_d,resetScroll,0,"Resets the chat scroll (executed when the GUI is closed, among others)"
func_146241_e,getChatOpen,0,Returns true if the chat GUI is open
func_146242_c,deleteChatLine,0,finds and deletes a Chat line by ID
func_146243_b,calculateChatboxHeight,0,
func_146244_h,getChatScale,0,Returns the chatscale from mc.gameSettings.chatScale
func_146245_b,refreshChat,0,
func_146246_g,getChatHeight,0,
func_146254_a,updateAchievementWindow,0,
func_146255_b,displayUnformattedAchievement,0,
func_146256_a,displayAchievement,0,
func_146257_b,clearAchievements,0,
func_146258_c,updateAchievementWindowScale,0,
func_146269_k,handleInput,0,Delegates mouse and keyboard input.
func_146270_b,drawWorldBackground,0,
func_146271_m,isCtrlKeyDown,0,Returns true if either windows ctrl key is down or if either mac meta key is down
func_146272_n,isShiftKeyDown,0,Returns true if either shift key is down
func_146273_a,mouseClickMove,0,"Called when a mouse button is pressed and the mouse is moved around. Parameters are : mouseX, mouseY, lastButtonClicked & timeSinceMouseClick."
func_146274_d,handleMouseInput,0,Handles mouse input.
func_146275_d,setClipboardString,0,Stores the given string in the system clipboard
func_146276_q_,drawDefaultBackground,0,Draws either a gradient over the background screen (when it exists) or a flat gradient over background.png
func_146277_j,getClipboardString,0,Returns a string stored in the system clipboard.
func_146278_c,drawBackground,0,Draws the background (i is always 0 as of 1.2.2)\n \n@param tint Always 0 as of Minecraft 1.2.2
func_146279_a,drawCreativeTabHoveringText,0,"Draws the text when mouse is over creative inventory tab. Params: current creative tab to be checked, current mouse x position, current mouse y position."
func_146280_a,setWorldAndResolution,0,Causes the screen to lay out its subcomponents again. This is the equivalent of the Java call Container.validate()
func_146281_b,onGuiClosed,0,Called when the screen is unloaded. Used to disable keyboard repeat events
func_146282_l,handleKeyboardInput,0,Handles keyboard input.
func_146283_a,drawHoveringText,0,
func_146284_a,actionPerformed,0,
func_146285_a,renderToolTip,0,
func_146286_b,mouseReleased,0,"Called when a mouse button is released. Args : mouseX, mouseY, releaseButton\n \n@param state Will be negative to indicate mouse move and will be either 0 or 1 to indicate mouse up."
func_146350_a,setButtonDelay,0,Sets the number of ticks to wait before enabling the buttons.
func_146358_g,disableSecurityWarning,0,
func_146359_e,copyLinkToClipboard,0,Copies the link to the system clipboard.
func_146367_a,connect,0,
func_146402_a,getSentHistory,0,"input is relative and is applied directly to the sentHistoryCursor so -1 is the previous message, 1 is the next message from the current cursor position"
func_146403_a,submitChatMessage,0,
func_146404_p_,autocompletePlayerNames,0,
func_146405_a,sendAutocompleteRequest,0,
func_146406_a,onAutocompleteResponse,0,
func_146407_a,openLink,0,
func_146418_g,wakeFromSleep,0,
func_146456_p,pageGetCurrent,0,Returns the entire text of the current page as determined by currPage
func_146457_a,pageSetCurrent,0,Sets the text of the current page as determined by currPage
func_146459_b,pageInsertIntoCurrent,0,"Processes any text getting inserted into the current page, enforcing the page size limit"
func_146460_c,keyTypedInTitle,0,Processes keystrokes when editing the title of a book
func_146461_i,addNewPage,0,
func_146462_a,sendBookToServer,0,
func_146463_b,keyTypedInBook,0,Processes keystrokes when editing the text of a book
func_146464_h,updateButtons,0,
func_146504_a,getSoundVolume,0,
func_146509_g,doneLoading,0,
func_146521_a,drawStatsScreen,0,
func_146527_c,drawSprite,0,Draws a sprite from assets/textures/gui/container/stats_icons.png
func_146531_b,drawButtonBackground,0,Draws a gray box that serves as a button background.
func_146541_h,createButtons,0,
func_146552_b,drawAchievementScreen,0,
func_146553_h,drawTitle,0,
func_146574_g,sendRespawnPacket,0,
func_146575_b,drawWinGameScreen,0,
func_146586_a,setDoneWorking,0,
func_146789_i,getOldServerPinger,0,
func_146790_a,selectServer,0,
func_146791_a,connectToServer,0,
func_146792_q,refreshServerList,0,
func_146794_g,createButtons,0,
func_146795_p,getServerList,0,
func_146796_h,connectToSelected,0,
func_146961_a,hasResourcePackEntry,0,
func_146975_c,getSlotAtPosition,0,Returns the slot at the given coordinates or null if there is none.
func_146976_a,drawGuiContainerBackgroundLayer,0,"Args : renderPartialTicks, mouseX, mouseY"
func_146977_a,drawSlot,0,
func_146978_c,isPointInRegion,0,"Test if the 2D point is in a rectangle (relative to the GUI). Args : rectX, rectY, rectWidth, rectHeight, pointX, pointY"
func_146979_b,drawGuiContainerForegroundLayer,0,"Draw the foreground layer for the GuiContainer (everything in front of the items). Args : mouseX, mouseY"
func_146980_g,updateDragSplitting,0,
func_146981_a,isMouseOverSlot,0,"Returns if the passed mouse position is over the specified slot. Args : slot, mouseX, mouseY"
func_146982_a,drawItemStack,0,"Render an ItemStack. Args : stack, x, y, format\n \n@param altText Should be null to display item stack size count, but can be set to show custom text where the stack size counter would be."
func_146983_a,checkHotbarKeys,0,"This function is what controls the hotbar shortcut check when you press a number key when hovering a stack. Args : keyCode, Returns true if a Hotbar key is pressed, else false"
func_146984_a,handleMouseClick,0,"Called when the mouse is clicked over a slot or outside the gui.\n \n@param clickType Types: 0 for basic click, 1 for shift-click, 2 for hotbar, 3 for pickBlock, 4 for drop, 5 for item distribution drag, 6 for double click"
func_147035_g,getMerchant,0,
func_147044_g,drawActivePotionEffects,0,Display the potion effects list
func_147046_a,drawEntityOnScreen,0,"Draws the entity to the screen. Args: xPos, yPos, scale, mouseX, mouseY, entityLiving"
func_147050_b,setCurrentCreativeTab,0,
func_147052_b,renderCreativeInventoryHoveringText,0,"Renders the creative inventory hovering text if mouse is over it. Returns true if did render or false otherwise. Params: current creative tab to be checked, current mouse x position, current mouse y position."
func_147053_i,updateCreativeSearch,0,
func_147055_p,needsScrollBars,0,returns (if you are not on the inventoryTab) and (the flag isn't set) and (you have more than 1 page of items)
func_147090_g,renameItem,0,
func_147095_a,requestTexturePackLoad,2,on receiving this message the client (if permission is given) will download the requested textures
func_147099_x,getStatFile,2,Gets the stats file for reading achievements
func_147104_D,getCurrentServerData,0,
func_147106_B,scheduleResourcesRefresh,0,
func_147107_h,isFramerateLimitBelowMax,0,
func_147108_a,displayGuiScreen,0,Sets the argument GuiScreen as the main (topmost visible) screen.
func_147109_W,getAmbientMusicType,0,
func_147110_a,getFramebuffer,0,
func_147111_S,isJava64bit,0,
func_147112_ai,middleClickMouse,0,Called when user clicked he's mouse middle button (pick block)
func_147113_T,isGamePaused,0,
func_147114_u,getNetHandler,0,
func_147115_a,sendClickBlockToController,0,
func_147116_af,clickMouse,0,
func_147117_R,getTextureMapBlocks,0,
func_147118_V,getSoundHandler,0,
func_147119_ah,updateFramebufferSize,0,
func_147120_f,resetSize,0,Called to ensure everything gets drawn right when window size is changed
func_147121_ag,rightClickMouse,0,Called when user clicked he's mouse right button (place)
func_147122_X,isJvm64bit,0,
func_147130_as,getMinecraftSessionService,2,
func_147132_au,refreshStatusNextTick,2,
func_147133_T,getTexturePack,2,
func_147134_at,getServerStatusResponse,2,
func_147135_j,getDifficulty,2,Get the server's difficulty
func_147136_ar,isAnnouncingPlayerAchievements,2,
func_147137_ag,getNetworkSystem,2,
func_147138_a,addFaviconToStatusResponse,2,
func_147139_a,setDifficultyForAllWorlds,2,
func_147149_a,saveToFile,2,Saves this CrashReport to the given file and returns a value indicating whether we were successful at doing so.
func_147153_a,addBlockInfo,2,
func_147155_a,getCategoryName,0,
func_147156_b,getCategoryId,0,
func_147176_a,getChatComponentFromNthArg,2,
func_147177_a,joinNiceString,2,"Creates a linguistic series joining the input chat components. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark"""
func_147178_a,getChatComponentFromNthArg,2,
func_147179_f,getItemByText,2,"Gets the Item specified by the given text string. First checks the item registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the item wasn't found. Returns the item if it was found."
func_147180_g,getBlockByText,2,"Gets the Block specified by the given text string. First checks the block registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the block wasn't found. Returns the block if it was found."
func_147185_d,addTeam,2,
func_147186_g,listTeams,2,
func_147187_n,resetPlayers,2,
func_147188_j,emptyTeam,2,
func_147190_h,joinTeam,2,
func_147191_h,removeObjective,2,
func_147192_d,getScoreboard,2,
func_147193_c,addObjective,2,
func_147194_f,removeTeam,2,
func_147195_l,listPlayers,2,
func_147196_d,listObjectives,2,
func_147197_m,setPlayer,2,
func_147198_k,setObjectiveDisplay,2,
func_147199_i,leaveTeam,2,
func_147200_e,setTeamOption,2,
func_147215_a,addBlockDestroyEffects,0,
func_147223_a,pingPendingNetworks,0,
func_147224_a,ping,0,
func_147225_b,tryCompatibilityPing,0,
func_147226_b,clearPendingNetworks,0,
func_147231_a,onDisconnect,2,"Invoked when disconnecting, the parameter is a ChatComponent describing the reason for termination"
func_147232_a,onConnectionStateTransition,2,"Allows validation of the connection state transition. Parameters: from, to (connection state). Typically throws IllegalStateException or UnsupportedOperationException if validation fails"
func_147233_a,onNetworkTick,2,For scheduled network tasks. Used in NetHandlerPlayServer to send keep-alive packets and in NetHandlerLoginServer for a login-timeout
func_147234_a,handleBlockChange,2,Updates the block and metadata and generates a blockupdate (and notify the clients)
func_147235_a,handleSpawnObject,2,Spawns an instance of the objecttype indicated by the packet and sets its position and momentum
func_147236_a,handleEntityStatus,2,"Invokes the entities' handleUpdateHealth method which is implemented in LivingBase (hurt/death), MinecartMobSpawner (spawn delay), FireworkRocket & MinecartTNT (explosion), IronGolem (throwing,...), Witch (spawn particles), Zombie (villager transformation), Animal (breeding mode particles), Horse (breeding/smoke particles), Sheep (...), Tameable (...), Villager (particles for breeding mode, angry and happy), Wolf (...)"
func_147237_a,handleSpawnPlayer,2,"Handles the creation of a nearby player entity, sets the position and held item"
func_147238_a,handleDestroyEntities,2,"Locally eliminates the entities. Invoked by the server when the items are in fact destroyed, or the player is no longer registered as required to monitor them. The latter happens when distance between the player and item increases beyond a certain treshold (typically the viewing distance)"
func_147239_a,handleConfirmTransaction,2,Verifies that the server and client are synchronized with respect to the inventory/container opened by the player and confirms if it is the case.
func_147240_a,handleCustomPayload,2,"Handles packets that have room for a channel specification. Vanilla implemented channels are ""MC|TrList"" to acquire a MerchantRecipeList trades for a villager merchant, ""MC|Brand"" which sets the server brand? on the player instance and finally ""MC|RPack"" which the server uses to communicate the identifier of the default server resourcepack for the client to load."
func_147241_a,handleWindowItems,2,Handles the placement of a specified ItemStack in a specified container/inventory slot
func_147242_a,handleEntityEquipment,2,
func_147243_a,handleEntityAttach,2,
func_147244_a,handleEntityVelocity,2,Sets the velocity of the specified entity to the specified value
func_147245_a,handleWindowProperty,2,Sets the progressbar of the opened window to the specified value
func_147246_a,handleCollectItem,2,
func_147247_a,handleTeams,2,"Updates a team managed by the scoreboard: Create/Remove the team registration, Register/Remove the player-team-memberships, Set team displayname/prefix/suffix and/or whether friendly fire is enabled"
func_147248_a,handleUpdateSign,2,Updates a specified sign with the specified text lines
func_147249_a,handleUpdateHealth,2,
func_147250_a,handleUpdateScore,2,Either updates the score with a specified value or removes the score for an objective
func_147251_a,handleChat,2,Prints a chatmessage in the chat GUI
func_147252_a,handleChangeGameState,2,
func_147253_a,handleDisconnect,2,Closes the network channel
func_147254_a,handleDisplayScoreboard,2,"Removes or sets the ScoreObjective to be displayed at a particular scoreboard position (list, sidebar, below name)"
func_147255_a,handleSoundEffect,2,
func_147256_a,handlePlayerListItem,2,
func_147257_a,handleHeldItemChange,2,Updates which hotbar slot of the player is currently selected
func_147258_a,handlePlayerPosLook,2,"Handles changes in player positioning and rotation such as when travelling to a new dimension, (re)spawning, mounting horses etc. Seems to immediately reply to the server with the clients post-processing perspective on the player positioning"
func_147259_a,handleEntityMovement,2,"Updates the specified entity's position by the specified relative moment and absolute rotation. Note that subclassing of the packet allows for the specification of a subset of this data (e.g. only rel. position, abs. rotation or both)."
func_147260_a,handleEntityEffect,2,
func_147261_a,handleBlockAction,2,"Triggers Block.onBlockEventReceived, which is implemented in BlockPistonBase for extension/retraction, BlockNote for setting the instrument (including audiovisual feedback) and in BlockContainer to set the number of players accessing a (Ender)Chest"
func_147262_a,handleRemoveEntityEffect,2,
func_147263_a,handleChunkData,2,"Updates the specified chunk with the supplied data, marks it for re-rendering and lighting recalculation"
func_147264_a,handleMaps,2,Updates the worlds MapStorage with the specified MapData for the specified map-identifier and invokes a MapItemRenderer for it
func_147265_a,handleOpenWindow,2,"Displays a GUI by ID. In order starting from id 0: Chest, Workbench, Furnace, Dispenser, Enchanting table, Brewing stand, Villager merchant, Beacon, Anvil, Hopper, Dropper, Horse"
func_147266_a,handleSetSlot,2,Handles pickin up an ItemStack or dropping one in your inventory or an open (non-creative) container
func_147267_a,handleEntityHeadLook,2,"Updates the direction in which the specified entity is looking, normally this head rotation is independent of the rotation of the entity itself"
func_147268_a,handleSignEditorOpen,2,Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text
func_147269_a,handleMapChunkBulk,2,
func_147270_a,handlePlayerAbilities,2,
func_147271_a,handleSpawnPosition,2,
func_147272_a,handleKeepAlive,2,
func_147273_a,handleUpdateTileEntity,2,"Updates the NBTTagCompound metadata of instances of the following entitytypes: Mob spawners, command blocks, beacons, skulls, flowerpot"
func_147274_a,handleTabComplete,2,Displays the available command-completion options the server knows of
func_147275_a,handleEntityTeleport,2,Updates an entity's position and rotation as specified by the packet
func_147276_a,handleCloseWindow,2,Resets the ItemStack held in hand and closes the window that is opened
func_147277_a,handleEffect,2,
func_147278_a,handleUseBed,2,"Retrieves the player identified by the packet, puts him to sleep if possible (and flags whether all players are asleep)"
func_147279_a,handleAnimation,2,"Renders a specified animation: Waking up a player, a living entity swinging its currently held item, being hurt or receiving a critical hit by normal or magical means"
func_147280_a,handleRespawn,2,
func_147281_a,handleSpawnMob,2,"Spawns the mob entity at the specified location, with the specified rotation, momentum and type. Updates the entities Datawatchers with the entity metadata specified in the packet"
func_147282_a,handleJoinGame,2,"Registers some server properties (gametype,hardcore-mode,terraintype,difficulty,player limit), creates a new WorldClient and sets the player initial dimension"
func_147283_a,handleExplosion,2,"Initiates a new explosion (sound, particles, drop spawn) for the affected blocks indicated by the packet."
func_147284_a,handleEntityMetadata,2,Invoked when the server registers new proximate objects in your watchlist or when objects in your watchlist have changed -> Registers any changes locally
func_147285_a,handleTimeUpdate,2,
func_147286_a,handleSpawnExperienceOrb,2,Spawns an experience orb and sets its value (amount of XP)
func_147287_a,handleMultiBlockChange,2,"Received from the servers PlayerManager if between 1 and 64 blocks in a chunk are changed. If only one block requires an update, the server sends S23PacketBlockChange and if 64 or more blocks are changed, the server sends S21PacketChunkData"
func_147288_a,handleSpawnPainting,2,Handles the spawning of a painting object
func_147289_a,handleParticles,2,Spawns a specified number of particles at the specified location with a randomized displacement according to specified bounds
func_147290_a,handleEntityProperties,2,"Updates en entity's attributes and their respective modifiers, which are used for speed bonusses (player sprinting, animals fleeing, baby speed), weapon/tool attackDamage, hostiles followRange randomization, zombie maxHealth and knockback resistance as well as reinforcement spawning chance."
func_147291_a,handleScoreboardObjective,2,"May create a scoreboard objective, remove an objective from the scoreboard or update an objectives' displayname"
func_147292_a,handleSpawnGlobalEntity,2,Handles globally visible entities. Used in vanilla for lightning bolts
func_147293_a,handleStatistics,2,Updates the players statistics or achievements
func_147294_a,handleBlockBreakAnim,2,Updates all registered IWorldAccess instances with destroyBlockInWorldPartially
func_147295_a,handleSetExperience,2,
func_147296_c,cleanup,0,Clears the WorldClient instance associated with this NetHandlerPlayClient
func_147297_a,addToSendQueue,0,
func_147298_b,getNetworkManager,0,Returns this the NetworkManager instance registered with this NetworkHandlerPlayClient
func_147311_a,processPing,2,
func_147312_a,processServerQuery,2,
func_147315_a,processEncryptionResponse,2,
func_147316_a,processLoginStart,2,
func_147322_a,closeConnection,2,
func_147338_a,processEnchantItem,2,"Enchants the item identified by the packet given some convoluted conditions (matching window, which should/shouldn't be in use?)"
func_147339_a,processConfirmTransaction,2,Received in response to the server requesting to confirm that the client-side open container matches the servers' after a mismatched container-slot manipulation. It will unlock the player's ability to manipulate the container contents
func_147340_a,processUseEntity,2,"Processes interactions ((un)leashing, opening command block GUI) and attacks on an entity with players currently equipped item"
func_147341_a,processTabComplete,2,Retrieves possible tab completions for the requested command string and sends them to the client
func_147342_a,processClientStatus,2,"Processes the client status updates: respawn attempt from player, opening statistics or achievements, or acquiring 'open inventory' achievement"
func_147343_a,processUpdateSign,2,
func_147344_a,processCreativeInventoryAction,2,Update the server with an ItemStack in a slot.
func_147345_a,processPlayerDigging,2,"Processes the player initiating/stopping digging on a particular spot, as well as a player dropping items?. (0: initiated, 1: reinitiated, 2? , 3-4 drop item (respectively without or with player control), 5: stopped; x,y,z, side clicked on;)"
func_147346_a,processPlayerBlockPlacement,2,"Processes block placement and block activation (anvil, furnace, etc.)"
func_147347_a,processPlayer,2,Processes clients perspective on player positioning and/or orientation
func_147348_a,processPlayerAbilities,2,Processes a player starting/stopping flying
func_147349_a,processVanilla250Packet,2,Synchronizes serverside and clientside book contents and signing
func_147350_a,processAnimation,2,Processes the player swinging its held item
func_147351_a,processClickWindow,2,Executes a container/inventory slot manipulation as indicated by the packet. Sends the serverside result if they didn't match the indicated result and prevents further manipulation by the player until he confirms that it has the same open container/inventory
func_147352_a,processClientSettings,2,"Updates serverside copy of client settings: language, render distance, chat visibility, chat colours, difficulty, and whether to show the cape"
func_147353_a,processKeepAlive,2,Updates a players' ping statistics
func_147354_a,processChatMessage,2,Process chat messages (broadcast back to clients) and commands (executes)
func_147355_a,processHeldItemChange,2,Updates which quickbar slot is selected
func_147356_a,processCloseWindow,2,Processes the client closing windows (container)
func_147357_a,processEntityAction,2,"Processes a range of action-types: sneaking, sprinting, waking from sleep, opening the inventory or setting jump height of the horse the player is riding"
func_147358_a,processInput,2,"Processes player movement input. Includes walking, strafing, jumping, sneaking; excludes riding and toggling flying/sprinting"
func_147359_a,sendPacket,2,
func_147360_c,kickPlayerFromServer,2,Kick a player from the server with a reason
func_147361_d,handleSlashCommand,2,Handle commands that start with a /
func_147362_b,getNetworkManager,2,
func_147363_d,currentTimeMillis,2,
func_147364_a,setPlayerLocation,2,
func_147383_a,processHandshake,2,"There are two recognized intentions for initiating a handshake: logging in and acquiring server status. The NetworkManager's protocol will be reconfigured according to the specified intention, although a login-intention must pass a versioncheck or receive a disconnect otherwise"
func_147388_a,handleDisconnect,2,
func_147389_a,handleEncryptionRequest,2,
func_147390_a,handleLoginSuccess,2,
func_147397_a,handleServerInfo,2,
func_147398_a,handlePong,2,
func_147407_a,setBase64EncodedIconData,0,
func_147409_e,getBase64EncodedIconData,0,"Returns the base-64 encoded representation of the server's icon, or null if not available"
func_147416_a,findClosestStructure,2,
func_147422_a,replaceBlocksForBiome,2,
func_147437_c,isAirBlock,2,Returns true if the block at the specified coordinates is empty
func_147438_o,getTileEntity,2,
func_147439_a,getBlock,2,
func_147440_b,findClosestStructure,2,Returns the location of the closest structure of the specified type. If not found returns null.
func_147441_b,notifyBlocksOfNeighborChange,2,
func_147442_i,setThunderStrength,0,Sets the strength of the thunder.
func_147443_d,destroyBlockInWorldPartially,2,Starts (or continues) destroying a block with given ID at the given coordinates for the given partially destroyed value.
func_147444_c,notifyBlockChange,2,"The block type change and need to notify other systems Args: x, y, z, blockID"
func_147445_c,isBlockNormalCubeDefault,2,"Checks if the block is a solid, normal cube. If the chunk does not exist, or is not loaded, it returns the boolean parameter"
func_147447_a,rayTraceBlocks,2,"Performs a raycast against all blocks in the world. Args : Vec1, Vec2, stopOnLiquid, ignoreBlockWithoutBoundingBox, returnLastUncollidableBlock"
func_147449_b,setBlock,2,Sets a block by a coordinate
func_147451_t,updateAllLightTypes,2,
func_147452_c,addBlockEvent,2,"Adds a block event with the given Args to the blockEventCache. During the next tick(), the block specified will have its onBlockEvent handler called with the given parameters. Args: X,Y,Z, Block, EventID, EventParameter"
func_147453_f,updateNeighborsAboutBlockChange,2,
func_147454_a,scheduleBlockUpdateWithPriority,2,
func_147455_a,setTileEntity,2,
func_147457_a,markTileEntityForRemoval,2,Adds the specified TileEntity to the pending removal list.
func_147458_c,markBlockRangeForRenderUpdate,2,
func_147459_d,notifyBlocksOfNeighborChange,2,
func_147460_e,notifyBlockOfNeighborChange,2,"Notifies a block that one of its neighbor change to the specified type Args: x, y, z, block"
func_147462_b,getTensionFactorForBlock,2,"returns a float value that can be used to determine how likely something is to go awry in the area. It increases based on how long the player is within the vicinity, the lunar phase, and game difficulty. The value can be up to 1.5 on the highest difficulty, 1.0 otherwise."
func_147463_c,updateLightByType,2,
func_147464_a,scheduleBlockUpdate,2,Used to schedule a call to the updateTick method on the specified block.
func_147465_d,setBlock,2,"Sets the block ID and metadata at a given location. Args: X, Y, Z, new block ID, new metadata, flags. Flag 1 will cause a block update. Flag 2 will send the change to clients (you almost always want this). Flag 4 prevents the block from being re-rendered, if this is a client world. Flags can be added together."
func_147466_a,doesBlockHaveSolidTopSurface,2,Returns true if the block at the given coordinate has a solid (buildable) top surface.
func_147468_f,setBlockToAir,2,
func_147469_q,isBlockFullCube,2,
func_147471_g,markBlockForUpdate,2,
func_147472_a,canPlaceEntityOnSide,2,Returns true if the given Entity can be placed on the given side of the given block position.
func_147474_b,getTopBlock,2,
func_147475_p,removeTileEntity,2,
func_147476_b,markTileEntityChunkModified,2,"Args: X, Y, Z, tile entity Marks the chunk the tile entity is in as modified. This is essential as chunks that are not marked as modified may be rolled back when exiting the game."
func_147477_a,isBlockTickScheduledThisTick,2,"Returns true if the given block will receive a scheduled tick in this tick. Args: X, Y, Z, Block"
func_147478_e,canSnowAt,2,
func_147479_m,markBlockForRenderUpdate,2,"On the client, re-renders this block. On the server, does nothing. Used for lighting updates."
func_147480_a,breakBlock,2,"Breaks the block at the given location. Args: x, y, z, dropBlock.\n \n@param x The X co-ordinate for the block\n@param y The Y co-ordinate for the block\n@param z The Z co-ordinate for the block\n@param dropBlock If the block should be dropped in-world"
func_147493_a,createPlayer,0,
func_147496_a,onWorldChange,0,
func_147499_a,bindTexture,0,
func_147500_a,renderTileEntityAt,0,
func_147542_a,cacheActiveRenderInfo,0,
func_147544_a,renderTileEntity,0,Render this TileEntity at its current position from the player
func_147545_a,hasSpecialRenderer,0,"Returns true if this TileEntity instance has a TileEntitySpecialRenderer associated with it, false otherwise."
func_147546_a,getSpecialRendererByClass,0,
func_147547_b,getSpecialRenderer,0,
func_147548_a,getFontRenderer,0,
func_147549_a,renderTileEntityAt,0,Render this TileEntity at a given set of coordinates
func_147564_a,getVertexState,0,
func_147565_a,setVertexState,0,
func_147570_f,getHasNormals,0,
func_147571_e,getHasBrightness,0,
func_147572_a,getRawBuffer,0,
func_147573_d,getHasTexture,0,
func_147574_g,getHasColor,0,
func_147575_c,getVertexCount,0,
func_147576_b,getRawBufferIndex,0,
func_147584_b,onStaticEntitiesChanged,2,
func_147585_a,markBlockRangeForRenderUpdate,2,"On the client, re-renders all blocks in this range, inclusive. On the server, does nothing. Args: min x, min y, min z, max x, max y, max z"
func_147586_a,markBlockForUpdate,2,"On the client, re-renders the block. On the server, sends the block to the client (which will re-render it), including the tile entity description packet if applicable. Args: x, y, z"
func_147587_b,destroyBlockPartially,2,Starts (or continues) destroying a block with given ID at the given coordinates for the given partially destroyed value
func_147588_b,markBlockForRenderUpdate,2,"On the client, re-renders this block. On the server, does nothing. Used for lighting updates."
func_147589_a,renderEntities,0,"Renders all entities within range and within the frustrum. Args: pos, frustrum, partialTickTime"
func_147590_a,drawOutlinedBoundingBox,0,Draws lines for the edges of the bounding box.
func_147591_f,rebuildDisplayListEntities,0,
func_147604_a,setFramebufferColor,0,
func_147605_b,createFramebuffer,0,
func_147606_d,unbindFramebufferTexture,0,
func_147607_a,setFramebufferFilter,0,
func_147608_a,deleteFramebuffer,0,
func_147609_e,unbindFramebuffer,0,
func_147610_a,bindFramebuffer,0,
func_147611_b,checkFramebufferComplete,0,
func_147612_c,bindFramebufferTexture,0,
func_147613_a,createBindFramebuffer,0,
func_147614_f,framebufferClear,0,
func_147615_c,framebufferRender,0,
func_147631_c,deleteGlTexture,0,
func_147632_b,setAnisotropicFiltering,0,
func_147633_a,setMipmapLevels,0,
func_147634_a,completeResourceLocation,0,
func_147640_e,checkTextureUploaded,0,
func_147641_a,setBufferedImage,0,
func_147645_c,deleteTexture,0,
func_147647_b,bidiReorder,0,Apply Unicode Bidirectional Algorithm to string and return a new possibly reordered string for visual rendering.
func_147649_g,getXPosF,0,
func_147650_b,getSoundLocation,0,
func_147651_i,getZPosF,0,
func_147652_d,getRepeatDelay,0,
func_147653_e,getVolume,0,
func_147654_h,getYPosF,0,
func_147655_f,getPitch,0,
func_147656_j,getAttenuationType,0,
func_147657_c,canRepeat,0,
func_147667_k,isDonePlaying,0,
func_147673_a,createPositionedSoundRecord,0,
func_147674_a,createPositionedSoundRecord,0,
func_147675_a,createRecordSoundAtPosition,0,
func_147680_a,getSound,0,
func_147681_a,playDelayedSound,0,Plays the sound in n ticks
func_147682_a,playSound,0,Play a sound
func_147683_b,stopSound,0,
func_147684_a,setSoundLevel,0,
func_147685_d,unloadSounds,0,
func_147686_a,getRandomSoundFromCategories,0,Returns a random sound from one or more categories
func_147687_e,resumeSounds,0,
func_147689_b,pauseSounds,0,
func_147690_c,stopSounds,0,
func_147691_a,setListener,0,
func_147692_c,isSoundPlaying,0,
func_147693_a,loadSoundResource,0,
func_147701_i,getMapItemRenderer,0,
func_147702_a,isShaderActive,0,
func_147703_b,deactivateShader,0,
func_147704_a,updateShaderGroupSize,0,
func_147705_c,activateNextShader,0,
func_147706_e,getShaderGroup,0,
func_147715_a,renderChest,0,"Renders a chest at 0,0,0 - used for item rendering"
func_147721_p,renderBlockLiquid,0,Renders a block based on the BlockLiquid class at the given coordinates
func_147722_a,renderBlockStairs,0,Renders a stair block at the given coordinates
func_147723_f,renderBlockTripWireSource,0,Renders a trip wire source block at the given coordinates
func_147724_m,renderBlockStem,0,
func_147725_a,renderBlockAnvil,0,Renders anvil
func_147726_j,renderBlockVine,0,
func_147727_a,mixAoBrightness,0,
func_147728_a,renderBlockAnvilOrient,0,Renders anvil block with orientation
func_147729_a,getLiquidHeight,0,
func_147730_a,renderBlockStemSmall,0,
func_147731_b,renderPistonBase,0,renders a block as a piston base
func_147732_a,renderBlockRedstoneDiodeMetadata,0,
func_147733_k,renderBlockStainedGlassPane,0,
func_147734_d,renderFaceZPos,0,"Renders the given texture to the south (z-positive) face of the block. Args: block, x, y, z, texture"
func_147735_a,renderBlockFence,0,
func_147736_d,renderStandardBlockWithColorMultiplier,0,"Renders a standard cube block at the given coordinates, with a given color ratio. Args: block, x, y, z, r, g, b"
func_147737_a,renderBlockAnvilRotate,0,Renders anvil block with rotation
func_147738_c,renderPistonRodEW,0,Render piston rod east/west
func_147739_a,renderItemIn3d,0,Checks to see if the item's render type indicates that it should be rendered as a regular block or not.
func_147740_a,renderBlockStemBig,0,
func_147741_a,renderBlockBrewingStand,0,Render BlockBrewingStand
func_147742_r,renderBlockLog,0,
func_147743_a,renderBlockEndPortalFrame,0,Render BlockEndPortalFrame
func_147744_b,hasOverrideBlockTexture,0,
func_147745_b,getBlockIcon,0,
func_147746_l,renderCrossedSquares,0,"Renders any block requiring crossed squares such as reeds, flowers, and mushrooms"
func_147747_a,renderTorchAtAngle,0,"Renders a torch at the given coordinates, with the base slanting at the given delta"
func_147748_a,renderBlockRedstoneDiode,0,
func_147749_a,renderBlockSandFalling,0,
func_147750_a,renderPistonExtensionAllFaces,0,Render all faces of the piston extension
func_147751_a,renderStandardBlockWithAmbientOcclusion,0,
func_147752_a,renderBlockFlowerpot,0,Renders flower pot
func_147753_b,setRenderAllFaces,0,
func_147754_e,renderBlockCactusImpl,0,Render block cactus implementation
func_147755_t,renderBlockCactus,0,
func_147756_g,renderBlockTripWire,0,Renders a trip wire block at the given coordinates
func_147757_a,setOverrideBlockTexture,0,Sets overrideBlockTexture
func_147758_b,getIconSafe,0,
func_147759_a,renderBlockRepeater,0,render a redstone repeater at the given coordinates
func_147760_u,renderBlockDoor,0,
func_147761_c,renderFaceZNeg,0,"Renders the given texture to the north (z-negative) face of the block. Args: block, x, y, z, texture"
func_147762_c,unlockBlockBounds,0,Unlocks the visual bounding box so that RenderBlocks can change it again.
func_147763_a,renderPistonRodUD,0,Render piston rod up/down
func_147764_f,renderFaceXPos,0,"Renders the given texture to the east (x-positive) face of the block. Args: block, x, y, z, texture"
func_147765_a,drawCrossedSquares,0,Utility function to draw crossed swuares
func_147766_a,renderBlockMinecartTrack,0,
func_147767_a,renderBlockPane,0,
func_147768_a,renderFaceYNeg,0,"Renders the given texture to the bottom face of the block. Args: block, x, y, z, texture"
func_147769_a,renderBlockAllFaces,0,Render all faces of a block
func_147770_b,overrideBlockBounds,0,"Like setRenderBounds, but locks the values so that RenderBlocks won't change them. If you use this, you must call unlockBlockBounds after you finish rendering!"
func_147771_a,clearOverrideBlockTexture,0,Clear override block texture
func_147772_a,renderBlockCocoa,0,
func_147773_v,renderBlockBed,0,render a bed at the given coordinates
func_147774_a,renderBlockDoublePlant,0,
func_147775_a,setRenderBoundsFromBlock,0,"Like setRenderBounds, but automatically pulling the bounds from the given Block."
func_147776_a,renderBlockFenceGate,0,
func_147777_a,getBlockIconFromSide,0,
func_147778_a,getAoBrightness,0,Get ambient occlusion brightness
func_147779_s,renderBlockQuartz,0,
func_147780_a,renderBlockAnvilMetadata,0,Renders anvil block with metadata
func_147781_a,renderBlockRedstoneComparator,0,
func_147782_a,setRenderBounds,0,
func_147783_o,renderBlockLilyPad,0,
func_147784_q,renderStandardBlock,0,Renders a standard cube block at the given coordinates\n \n@param blockType the type of block that is rendered\n@param blockX x-coordinate of the block\n@param blockY y-coordinate of the block\n@param blockZ z-coordinate of the block
func_147785_a,renderBlockCauldron,0,Render block cauldron
func_147786_a,setRenderFromInside,0,
func_147787_a,getBlockIconFromSideAndMetadata,0,
func_147788_h,renderBlockRedstoneWire,0,Renders a redstone wire block at the given coordinates
func_147789_b,renderPistonRodSN,0,Render piston rod south/north
func_147790_e,renderBlockLever,0,Renders a lever block at the given coordinates
func_147791_c,renderBlockTorch,0,Renders a torch block at the given coordinates
func_147792_a,renderBlockUsingTexture,0,Renders a block using the given texture instead of the block's own default texture
func_147793_a,getBlockIcon,0,
func_147794_i,renderBlockLadder,0,
func_147795_a,renderBlockCropsImpl,0,Render block crops implementation
func_147796_n,renderBlockCrops,0,
func_147797_a,renderBlockBeacon,0,
func_147798_e,renderFaceXNeg,0,"Renders the given texture to the west (x-negative) face of the block. Args: block, x, y, z, texture"
func_147799_a,renderBlockHopperMetadata,0,
func_147800_a,renderBlockAsItem,0,"Is called to render the image of a block on an inventory, as a held item, or as a an item on the ground"
func_147801_a,renderBlockFire,0,Renders a fire block at the given coordinates
func_147802_a,renderBlockDragonEgg,0,
func_147803_a,renderBlockHopper,0,
func_147804_d,renderPistonBaseAllFaces,0,Render all faces of the piston base
func_147805_b,renderBlockByRenderType,0,Renders the block at the given coordinates using the block's rendering type
func_147806_b,renderFaceYPos,0,"Renders the given texture to the top face of the block. Args: block, x, y, z, texture"
func_147807_a,renderBlockWall,0,
func_147808_b,renderStandardBlockWithAmbientOcclusionPartial,0,"Renders non-full-cube block with ambient occusion. Args: block, x, y, z, red, green, blue (lighting)"
func_147809_c,renderPistonExtension,0,renders the pushing part of a piston
func_147889_b,updateRendererSort,0,
func_147890_b,preRenderBlocks,0,
func_147891_a,postRenderBlocks,0,
func_147892_a,updateRenderer,0,Will update this chunk renderer
func_147905_a,isStaticEntity,0,
func_147906_a,renderLivingLabel,0,Renders an entity's name above its head
func_147936_a,renderEntityStatic,0,
func_147937_a,renderEntitySimple,0,
func_147938_a,cacheActiveRenderInfo,0,
func_147939_a,doRenderEntity,0,
func_147940_a,renderEntityWithPosYaw,0,
func_147942_a,deleteTexture,0,
func_147946_a,allocateTextureImpl,0,
func_147947_a,uploadTextureSub,0,