summaryrefslogtreecommitdiff
path: root/javadoc/net/minecraft/world/WorldServer.html
blob: b84212a19bc16ce7d7390e869f3591f1091854a8 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Thu Feb 05 20:10:17 EST 2015 -->
<title>WorldServer (Forge API)</title>
<meta name="date" content="2015-02-05">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="WorldServer (Forge API)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../net/minecraft/world/WorldSavedData.html" title="class in net.minecraft.world"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../net/minecraft/world/WorldServerMulti.html" title="class in net.minecraft.world"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/world/WorldServer.html" target="_top">Frames</a></li>
<li><a href="WorldServer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">net.minecraft.world</div>
<h2 title="Class WorldServer" class="title">Class WorldServer</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">net.minecraft.world.World</a></li>
<li>
<ul class="inheritance">
<li>net.minecraft.world.WorldServer</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../net/minecraft/world/IBlockAccess.html" title="interface in net.minecraft.world">IBlockAccess</a></dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../net/minecraft/world/demo/DemoWorldServer.html" title="class in net.minecraft.world.demo">DemoWorldServer</a>, <a href="../../../net/minecraft/world/WorldServerMulti.html" title="class in net.minecraft.world">WorldServerMulti</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">WorldServer</span>
extends <a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/util/WeightedRandomChestContent.html" title="class in net.minecraft.util">WeightedRandomChestContent</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#bonusChestContent">bonusChestContent</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../../net/minecraft/world/Teleporter.html" title="class in net.minecraft.world">Teleporter</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#customTeleporters">customTeleporters</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.util.Set&lt;<a href="../../../net/minecraft/world/ChunkCoordIntPair.html" title="class in net.minecraft.world">ChunkCoordIntPair</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#doneChunks">doneChunks</a></strong></code>
<div class="block">Stores the recently processed (lighting) chunks</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#levelSaving">levelSaving</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/world/gen/ChunkProviderServer.html" title="class in net.minecraft.world.gen">ChunkProviderServer</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#theChunkProviderServer">theChunkProviderServer</a></strong></code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_net.minecraft.world.World">
<!--   -->
</a>
<h3>Fields inherited from class&nbsp;net.minecraft.world.<a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></h3>
<code><a href="../../../net/minecraft/world/World.html#activeChunkSet">activeChunkSet</a>, <a href="../../../net/minecraft/world/World.html#captureBlockSnapshots">captureBlockSnapshots</a>, <a href="../../../net/minecraft/world/World.html#capturedBlockSnapshots">capturedBlockSnapshots</a>, <a href="../../../net/minecraft/world/World.html#chunkProvider">chunkProvider</a>, <a href="../../../net/minecraft/world/World.html#difficultySetting">difficultySetting</a>, <a href="../../../net/minecraft/world/World.html#DIST_HASH_MAGIC">DIST_HASH_MAGIC</a>, <a href="../../../net/minecraft/world/World.html#findingSpawnPoint">findingSpawnPoint</a>, <a href="../../../net/minecraft/world/World.html#isRemote">isRemote</a>, <a href="../../../net/minecraft/world/World.html#lastLightningBolt">lastLightningBolt</a>, <a href="../../../net/minecraft/world/World.html#loadedEntityList">loadedEntityList</a>, <a href="../../../net/minecraft/world/World.html#loadedTileEntityList">loadedTileEntityList</a>, <a href="../../../net/minecraft/world/World.html#mapStorage">mapStorage</a>, <a href="../../../net/minecraft/world/World.html#MAX_ENTITY_RADIUS">MAX_ENTITY_RADIUS</a>, <a href="../../../net/minecraft/world/World.html#perWorldStorage">perWorldStorage</a>, <a href="../../../net/minecraft/world/World.html#playerEntities">playerEntities</a>, <a href="../../../net/minecraft/world/World.html#prevRainingStrength">prevRainingStrength</a>, <a href="../../../net/minecraft/world/World.html#prevThunderingStrength">prevThunderingStrength</a>, <a href="../../../net/minecraft/world/World.html#provider">provider</a>, <a href="../../../net/minecraft/world/World.html#rainingStrength">rainingStrength</a>, <a href="../../../net/minecraft/world/World.html#rand">rand</a>, <a href="../../../net/minecraft/world/World.html#restoringBlockSnapshots">restoringBlockSnapshots</a>, <a href="../../../net/minecraft/world/World.html#saveHandler">saveHandler</a>, <a href="../../../net/minecraft/world/World.html#scheduledUpdatesAreImmediate">scheduledUpdatesAreImmediate</a>, <a href="../../../net/minecraft/world/World.html#skylightSubtracted">skylightSubtracted</a>, <a href="../../../net/minecraft/world/World.html#spawnHostileMobs">spawnHostileMobs</a>, <a href="../../../net/minecraft/world/World.html#spawnPeacefulMobs">spawnPeacefulMobs</a>, <a href="../../../net/minecraft/world/World.html#theProfiler">theProfiler</a>, <a href="../../../net/minecraft/world/World.html#thunderingStrength">thunderingStrength</a>, <a href="../../../net/minecraft/world/World.html#unloadedEntityList">unloadedEntityList</a>, <a href="../../../net/minecraft/world/World.html#updateLCG">updateLCG</a>, <a href="../../../net/minecraft/world/World.html#villageCollectionObj">villageCollectionObj</a>, <a href="../../../net/minecraft/world/World.html#villageSiegeObj">villageSiegeObj</a>, <a href="../../../net/minecraft/world/World.html#weatherEffects">weatherEffects</a>, <a href="../../../net/minecraft/world/World.html#worldAccesses">worldAccesses</a>, <a href="../../../net/minecraft/world/World.html#worldInfo">worldInfo</a>, <a href="../../../net/minecraft/world/World.html#worldScoreboard">worldScoreboard</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#WorldServer(net.minecraft.server.MinecraftServer,%20net.minecraft.world.storage.ISaveHandler,%20java.lang.String,%20int,%20net.minecraft.world.WorldSettings,%20net.minecraft.profiler.Profiler)">WorldServer</a></strong>(<a href="../../../net/minecraft/server/MinecraftServer.html" title="class in net.minecraft.server">MinecraftServer</a>&nbsp;p_i45284_1_,
           <a href="../../../net/minecraft/world/storage/ISaveHandler.html" title="interface in net.minecraft.world.storage">ISaveHandler</a>&nbsp;p_i45284_2_,
           java.lang.String&nbsp;p_i45284_3_,
           int&nbsp;p_i45284_4_,
           <a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_i45284_5_,
           <a href="../../../net/minecraft/profiler/Profiler.html" title="class in net.minecraft.profiler">Profiler</a>&nbsp;p_i45284_6_)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#addBlockEvent(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">addBlockEvent</a></strong>(int&nbsp;p_147452_1_,
             int&nbsp;p_147452_2_,
             int&nbsp;p_147452_3_,
             <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147452_4_,
             int&nbsp;p_147452_5_,
             int&nbsp;p_147452_6_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#addWeatherEffect(net.minecraft.entity.Entity)">addWeatherEffect</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72942_1_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#areAllPlayersAsleep()">areAllPlayersAsleep</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#canMineBlock(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int)">canMineBlock</a></strong>(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a>&nbsp;p_72962_1_,
            int&nbsp;p_72962_2_,
            int&nbsp;p_72962_3_,
            int&nbsp;p_72962_4_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#canMineBlockBody(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int)">canMineBlockBody</a></strong>(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a>&nbsp;par1EntityPlayer,
                int&nbsp;par2,
                int&nbsp;par3,
                int&nbsp;par4)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#createBonusChest()">createBonusChest</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../net/minecraft/world/chunk/IChunkProvider.html" title="interface in net.minecraft.world.chunk">IChunkProvider</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#createChunkProvider()">createChunkProvider</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#createSpawnPosition(net.minecraft.world.WorldSettings)">createSpawnPosition</a></strong>(<a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_73052_1_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#flush()">flush</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_147446_b(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">func_147446_b</a></strong>(int&nbsp;p_147446_1_,
             int&nbsp;p_147446_2_,
             int&nbsp;p_147446_3_,
             <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147446_4_,
             int&nbsp;p_147446_5_,
             int&nbsp;p_147446_6_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_147456_g()">func_147456_g</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_147486_a(int,%20int,%20int,%20int,%20int,%20int)">func_147486_a</a></strong>(int&nbsp;p_147486_1_,
             int&nbsp;p_147486_2_,
             int&nbsp;p_147486_3_,
             int&nbsp;p_147486_4_,
             int&nbsp;p_147486_5_,
             int&nbsp;p_147486_6_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_147487_a(java.lang.String,%20double,%20double,%20double,%20int,%20double,%20double,%20double,%20double)">func_147487_a</a></strong>(java.lang.String&nbsp;p_147487_1_,
             double&nbsp;p_147487_2_,
             double&nbsp;p_147487_4_,
             double&nbsp;p_147487_6_,
             int&nbsp;p_147487_8_,
             double&nbsp;p_147487_9_,
             double&nbsp;p_147487_11_,
             double&nbsp;p_147487_13_,
             double&nbsp;p_147487_15_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_152379_p()">func_152379_p</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/server/MinecraftServer.html" title="class in net.minecraft.server">MinecraftServer</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#func_73046_m()">func_73046_m</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getChunkSaveLocation()">getChunkSaveLocation</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/world/Teleporter.html" title="class in net.minecraft.world">Teleporter</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getDefaultTeleporter()">getDefaultTeleporter</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getEntityByID(int)">getEntityByID</a></strong>(int&nbsp;p_73045_1_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/entity/EntityTracker.html" title="class in net.minecraft.entity">EntityTracker</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getEntityTracker()">getEntityTracker</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/util/ChunkCoordinates.html" title="class in net.minecraft.util">ChunkCoordinates</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getEntrancePortalLocation()">getEntrancePortalLocation</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.List</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getPendingBlockUpdates(net.minecraft.world.chunk.Chunk,%20boolean)">getPendingBlockUpdates</a></strong>(<a href="../../../net/minecraft/world/chunk/Chunk.html" title="class in net.minecraft.world.chunk">Chunk</a>&nbsp;p_72920_1_,
                      boolean&nbsp;p_72920_2_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/server/management/PlayerManager.html" title="class in net.minecraft.server.management">PlayerManager</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#getPlayerManager()">getPlayerManager</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#initialize(net.minecraft.world.WorldSettings)">initialize</a></strong>(<a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_72963_1_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#isBlockTickScheduledThisTick(int,%20int,%20int,%20net.minecraft.block.Block)">isBlockTickScheduledThisTick</a></strong>(int&nbsp;p_147477_1_,
                            int&nbsp;p_147477_2_,
                            int&nbsp;p_147477_3_,
                            <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147477_4_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/world/Explosion.html" title="class in net.minecraft.world">Explosion</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#newExplosion(net.minecraft.entity.Entity,%20double,%20double,%20double,%20float,%20boolean,%20boolean)">newExplosion</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72885_1_,
            double&nbsp;p_72885_2_,
            double&nbsp;p_72885_4_,
            double&nbsp;p_72885_6_,
            float&nbsp;p_72885_8_,
            boolean&nbsp;p_72885_9_,
            boolean&nbsp;p_72885_10_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#onEntityAdded(net.minecraft.entity.Entity)">onEntityAdded</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72923_1_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#onEntityRemoved(net.minecraft.entity.Entity)">onEntityRemoved</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72847_1_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#resetUpdateEntityTick()">resetUpdateEntityTick</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#saveAllChunks(boolean,%20net.minecraft.util.IProgressUpdate)">saveAllChunks</a></strong>(boolean&nbsp;p_73044_1_,
             <a href="../../../net/minecraft/util/IProgressUpdate.html" title="interface in net.minecraft.util">IProgressUpdate</a>&nbsp;p_73044_2_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#saveChunkData()">saveChunkData</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#saveLevel()">saveLevel</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#scheduleBlockUpdate(int,%20int,%20int,%20net.minecraft.block.Block,%20int)">scheduleBlockUpdate</a></strong>(int&nbsp;p_147464_1_,
                   int&nbsp;p_147464_2_,
                   int&nbsp;p_147464_3_,
                   <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147464_4_,
                   int&nbsp;p_147464_5_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#scheduleBlockUpdateWithPriority(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">scheduleBlockUpdateWithPriority</a></strong>(int&nbsp;p_147454_1_,
                               int&nbsp;p_147454_2_,
                               int&nbsp;p_147454_3_,
                               <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147454_4_,
                               int&nbsp;p_147454_5_,
                               int&nbsp;p_147454_6_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#setEntityState(net.minecraft.entity.Entity,%20byte)">setEntityState</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72960_1_,
              byte&nbsp;p_72960_2_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#setSpawnLocation()">setSpawnLocation</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/world/biome/BiomeGenBase.SpawnListEntry.html" title="class in net.minecraft.world.biome">BiomeGenBase.SpawnListEntry</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#spawnRandomCreature(net.minecraft.entity.EnumCreatureType,%20int,%20int,%20int)">spawnRandomCreature</a></strong>(<a href="../../../net/minecraft/entity/EnumCreatureType.html" title="enum in net.minecraft.entity">EnumCreatureType</a>&nbsp;p_73057_1_,
                   int&nbsp;p_73057_2_,
                   int&nbsp;p_73057_3_,
                   int&nbsp;p_73057_4_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#tick()">tick</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#tickUpdates(boolean)">tickUpdates</a></strong>(boolean&nbsp;p_72955_1_)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#updateAllPlayersSleepingFlag()">updateAllPlayersSleepingFlag</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#updateEntities()">updateEntities</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#updateEntityWithOptionalForce(net.minecraft.entity.Entity,%20boolean)">updateEntityWithOptionalForce</a></strong>(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72866_1_,
                             boolean&nbsp;p_72866_2_)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#updateWeather()">updateWeather</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/world/WorldServer.html#wakeAllPlayers()">wakeAllPlayers</a></strong>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_net.minecraft.world.World">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;net.minecraft.world.<a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></h3>
<code><a href="../../../net/minecraft/world/World.html#addLoadedEntities(java.util.List)">addLoadedEntities</a>, <a href="../../../net/minecraft/world/World.html#addTileEntity(net.minecraft.tileentity.TileEntity)">addTileEntity</a>, <a href="../../../net/minecraft/world/World.html#addWorldAccess(net.minecraft.world.IWorldAccess)">addWorldAccess</a>, <a href="../../../net/minecraft/world/World.html#addWorldInfoToCrashReport(net.minecraft.crash.CrashReport)">addWorldInfoToCrashReport</a>, <a href="../../../net/minecraft/world/World.html#blockExists(int,%20int,%20int)">blockExists</a>, <a href="../../../net/minecraft/world/World.html#calculateInitialSkylight()">calculateInitialSkylight</a>, <a href="../../../net/minecraft/world/World.html#calculateInitialWeatherBody()">calculateInitialWeatherBody</a>, <a href="../../../net/minecraft/world/World.html#calculateSkylightSubtracted(float)">calculateSkylightSubtracted</a>, <a href="../../../net/minecraft/world/World.html#canBlockFreeze(int,%20int,%20int,%20boolean)">canBlockFreeze</a>, <a href="../../../net/minecraft/world/World.html#canBlockFreezeBody(int,%20int,%20int,%20boolean)">canBlockFreezeBody</a>, <a href="../../../net/minecraft/world/World.html#canBlockSeeTheSky(int,%20int,%20int)">canBlockSeeTheSky</a>, <a href="../../../net/minecraft/world/World.html#canLightningStrikeAt(int,%20int,%20int)">canLightningStrikeAt</a>, <a href="../../../net/minecraft/world/World.html#canPlaceEntityOnSide(net.minecraft.block.Block,%20int,%20int,%20int,%20boolean,%20int,%20net.minecraft.entity.Entity,%20net.minecraft.item.ItemStack)">canPlaceEntityOnSide</a>, <a href="../../../net/minecraft/world/World.html#canSnowAtBody(int,%20int,%20int,%20boolean)">canSnowAtBody</a>, <a href="../../../net/minecraft/world/World.html#checkBlockCollision(net.minecraft.util.AxisAlignedBB)">checkBlockCollision</a>, <a href="../../../net/minecraft/world/World.html#checkChunksExist(int,%20int,%20int,%20int,%20int,%20int)">checkChunksExist</a>, <a href="../../../net/minecraft/world/World.html#checkNoEntityCollision(net.minecraft.util.AxisAlignedBB)">checkNoEntityCollision</a>, <a href="../../../net/minecraft/world/World.html#checkNoEntityCollision(net.minecraft.util.AxisAlignedBB,%20net.minecraft.entity.Entity)">checkNoEntityCollision</a>, <a href="../../../net/minecraft/world/World.html#checkSessionLock()">checkSessionLock</a>, <a href="../../../net/minecraft/world/World.html#chunkExists(int,%20int)">chunkExists</a>, <a href="../../../net/minecraft/world/World.html#countEntities(java.lang.Class)">countEntities</a>, <a href="../../../net/minecraft/world/World.html#countEntities(net.minecraft.entity.EnumCreatureType,%20boolean)">countEntities</a>, <a href="../../../net/minecraft/world/World.html#createExplosion(net.minecraft.entity.Entity,%20double,%20double,%20double,%20float,%20boolean)">createExplosion</a>, <a href="../../../net/minecraft/world/World.html#destroyBlockInWorldPartially(int,%20int,%20int,%20int,%20int)">destroyBlockInWorldPartially</a>, <a href="../../../net/minecraft/world/World.html#doChunksNearChunkExist(int,%20int,%20int,%20int)">doChunksNearChunkExist</a>, <a href="../../../net/minecraft/world/World.html#doesBlockHaveSolidTopSurface(net.minecraft.world.IBlockAccess,%20int,%20int,%20int)">doesBlockHaveSolidTopSurface</a>, <a href="../../../net/minecraft/world/World.html#drawCloudsBody(float)">drawCloudsBody</a>, <a href="../../../net/minecraft/world/World.html#extendedLevelsInChunkCache()">extendedLevelsInChunkCache</a>, <a href="../../../net/minecraft/world/World.html#extinguishFire(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int,%20int)">extinguishFire</a>, <a href="../../../net/minecraft/world/World.html#findClosestStructure(java.lang.String,%20int,%20int,%20int)">findClosestStructure</a>, <a href="../../../net/minecraft/world/World.html#findNearestEntityWithinAABB(java.lang.Class,%20net.minecraft.util.AxisAlignedBB,%20net.minecraft.entity.Entity)">findNearestEntityWithinAABB</a>, <a href="../../../net/minecraft/world/World.html#finishSetup()">finishSetup</a>, <a href="../../../net/minecraft/world/World.html#func_147447_a(net.minecraft.util.Vec3,%20net.minecraft.util.Vec3,%20boolean,%20boolean,%20boolean)">func_147447_a</a>, <a href="../../../net/minecraft/world/World.html#func_147448_a(java.util.Collection)">func_147448_a</a>, <a href="../../../net/minecraft/world/World.html#func_147450_X()">func_147450_X</a>, <a href="../../../net/minecraft/world/World.html#func_147451_t(int,%20int,%20int)">func_147451_t</a>, <a href="../../../net/minecraft/world/World.html#func_147453_f(int,%20int,%20int,%20net.minecraft.block.Block)">func_147453_f</a>, <a href="../../../net/minecraft/world/World.html#func_147457_a(net.minecraft.tileentity.TileEntity)">func_147457_a</a>, <a href="../../../net/minecraft/world/World.html#func_147461_a(net.minecraft.util.AxisAlignedBB)">func_147461_a</a>, <a href="../../../net/minecraft/world/World.html#func_147462_b(double,%20double,%20double)">func_147462_b</a>, <a href="../../../net/minecraft/world/World.html#func_147467_a(int,%20int,%20net.minecraft.world.chunk.Chunk)">func_147467_a</a>, <a href="../../../net/minecraft/world/World.html#func_147469_q(int,%20int,%20int)">func_147469_q</a>, <a href="../../../net/minecraft/world/World.html#func_147470_e(net.minecraft.util.AxisAlignedBB)">func_147470_e</a>, <a href="../../../net/minecraft/world/World.html#func_147473_B(int,%20int,%20int)">func_147473_B</a>, <a href="../../../net/minecraft/world/World.html#func_147478_e(int,%20int,%20int,%20boolean)">func_147478_e</a>, <a href="../../../net/minecraft/world/World.html#func_147479_m(int,%20int,%20int)">func_147479_m</a>, <a href="../../../net/minecraft/world/World.html#func_147480_a(int,%20int,%20int,%20boolean)">func_147480_a</a>, <a href="../../../net/minecraft/world/World.html#func_152378_a(java.util.UUID)">func_152378_a</a>, <a href="../../../net/minecraft/world/World.html#func_82738_a(long)">func_82738_a</a>, <a href="../../../net/minecraft/world/World.html#getActualHeight()">getActualHeight</a>, <a href="../../../net/minecraft/world/World.html#getBiomeGenForCoords(int,%20int)">getBiomeGenForCoords</a>, <a href="../../../net/minecraft/world/World.html#getBiomeGenForCoordsBody(int,%20int)">getBiomeGenForCoordsBody</a>, <a href="../../../net/minecraft/world/World.html#getBlock(int,%20int,%20int)">getBlock</a>, <a href="../../../net/minecraft/world/World.html#getBlockDensity(net.minecraft.util.Vec3,%20net.minecraft.util.AxisAlignedBB)">getBlockDensity</a>, <a href="../../../net/minecraft/world/World.html#getBlockLightOpacity(int,%20int,%20int)">getBlockLightOpacity</a>, <a href="../../../net/minecraft/world/World.html#getBlockLightValue_do(int,%20int,%20int,%20boolean)">getBlockLightValue_do</a>, <a href="../../../net/minecraft/world/World.html#getBlockLightValue(int,%20int,%20int)">getBlockLightValue</a>, <a href="../../../net/minecraft/world/World.html#getBlockMetadata(int,%20int,%20int)">getBlockMetadata</a>, <a href="../../../net/minecraft/world/World.html#getBlockPowerInput(int,%20int,%20int)">getBlockPowerInput</a>, <a href="../../../net/minecraft/world/World.html#getCelestialAngle(float)">getCelestialAngle</a>, <a href="../../../net/minecraft/world/World.html#getCelestialAngleRadians(float)">getCelestialAngleRadians</a>, <a href="../../../net/minecraft/world/World.html#getChunkFromBlockCoords(int,%20int)">getChunkFromBlockCoords</a>, <a href="../../../net/minecraft/world/World.html#getChunkFromChunkCoords(int,%20int)">getChunkFromChunkCoords</a>, <a href="../../../net/minecraft/world/World.html#getChunkHeightMapMinimum(int,%20int)">getChunkHeightMapMinimum</a>, <a href="../../../net/minecraft/world/World.html#getChunkProvider()">getChunkProvider</a>, <a href="../../../net/minecraft/world/World.html#getClosestPlayer(double,%20double,%20double,%20double)">getClosestPlayer</a>, <a href="../../../net/minecraft/world/World.html#getClosestPlayerToEntity(net.minecraft.entity.Entity,%20double)">getClosestPlayerToEntity</a>, <a href="../../../net/minecraft/world/World.html#getClosestVulnerablePlayer(double,%20double,%20double,%20double)">getClosestVulnerablePlayer</a>, <a href="../../../net/minecraft/world/World.html#getClosestVulnerablePlayerToEntity(net.minecraft.entity.Entity,%20double)">getClosestVulnerablePlayerToEntity</a>, <a href="../../../net/minecraft/world/World.html#getCloudColour(float)">getCloudColour</a>, <a href="../../../net/minecraft/world/World.html#getCollidingBoundingBoxes(net.minecraft.entity.Entity,%20net.minecraft.util.AxisAlignedBB)">getCollidingBoundingBoxes</a>, <a href="../../../net/minecraft/world/World.html#getCurrentDate()">getCurrentDate</a>, <a href="../../../net/minecraft/world/World.html#getCurrentMoonPhaseFactor()">getCurrentMoonPhaseFactor</a>, <a href="../../../net/minecraft/world/World.html#getCurrentMoonPhaseFactorBody()">getCurrentMoonPhaseFactorBody</a>, <a href="../../../net/minecraft/world/World.html#getDebugLoadedEntities()">getDebugLoadedEntities</a>, <a href="../../../net/minecraft/world/World.html#getEntitiesWithinAABB(java.lang.Class,%20net.minecraft.util.AxisAlignedBB)">getEntitiesWithinAABB</a>, <a href="../../../net/minecraft/world/World.html#getEntitiesWithinAABBExcludingEntity(net.minecraft.entity.Entity,%20net.minecraft.util.AxisAlignedBB)">getEntitiesWithinAABBExcludingEntity</a>, <a href="../../../net/minecraft/world/World.html#getEntitiesWithinAABBExcludingEntity(net.minecraft.entity.Entity,%20net.minecraft.util.AxisAlignedBB,%20net.minecraft.command.IEntitySelector)">getEntitiesWithinAABBExcludingEntity</a>, <a href="../../../net/minecraft/world/World.html#getEntityPathToXYZ(net.minecraft.entity.Entity,%20int,%20int,%20int,%20float,%20boolean,%20boolean,%20boolean,%20boolean)">getEntityPathToXYZ</a>, <a href="../../../net/minecraft/world/World.html#getFogColor(float)">getFogColor</a>, <a href="../../../net/minecraft/world/World.html#getFullBlockLightValue(int,%20int,%20int)">getFullBlockLightValue</a>, <a href="../../../net/minecraft/world/World.html#getGameRules()">getGameRules</a>, <a href="../../../net/minecraft/world/World.html#getHeight()">getHeight</a>, <a href="../../../net/minecraft/world/World.html#getHeightValue(int,%20int)">getHeightValue</a>, <a href="../../../net/minecraft/world/World.html#getHorizon()">getHorizon</a>, <a href="../../../net/minecraft/world/World.html#getIndirectPowerLevelTo(int,%20int,%20int,%20int)">getIndirectPowerLevelTo</a>, <a href="../../../net/minecraft/world/World.html#getIndirectPowerOutput(int,%20int,%20int,%20int)">getIndirectPowerOutput</a>, <a href="../../../net/minecraft/world/World.html#getLightBrightness(int,%20int,%20int)">getLightBrightness</a>, <a href="../../../net/minecraft/world/World.html#getLightBrightnessForSkyBlocks(int,%20int,%20int,%20int)">getLightBrightnessForSkyBlocks</a>, <a href="../../../net/minecraft/world/World.html#getLoadedEntityList()">getLoadedEntityList</a>, <a href="../../../net/minecraft/world/World.html#getMoonPhase()">getMoonPhase</a>, <a href="../../../net/minecraft/world/World.html#getPathEntityToEntity(net.minecraft.entity.Entity,%20net.minecraft.entity.Entity,%20float,%20boolean,%20boolean,%20boolean,%20boolean)">getPathEntityToEntity</a>, <a href="../../../net/minecraft/world/World.html#getPersistentChunks()">getPersistentChunks</a>, <a href="../../../net/minecraft/world/World.html#getPlayerEntityByName(java.lang.String)">getPlayerEntityByName</a>, <a href="../../../net/minecraft/world/World.html#getPrecipitationHeight(int,%20int)">getPrecipitationHeight</a>, <a href="../../../net/minecraft/world/World.html#getProviderName()">getProviderName</a>, <a href="../../../net/minecraft/world/World.html#getRainStrength(float)">getRainStrength</a>, <a href="../../../net/minecraft/world/World.html#getSavedLightValue(net.minecraft.world.EnumSkyBlock,%20int,%20int,%20int)">getSavedLightValue</a>, <a href="../../../net/minecraft/world/World.html#getSaveHandler()">getSaveHandler</a>, <a href="../../../net/minecraft/world/World.html#getScoreboard()">getScoreboard</a>, <a href="../../../net/minecraft/world/World.html#getSeed()">getSeed</a>, <a href="../../../net/minecraft/world/World.html#getSkyBlockTypeBrightness(net.minecraft.world.EnumSkyBlock,%20int,%20int,%20int)">getSkyBlockTypeBrightness</a>, <a href="../../../net/minecraft/world/World.html#getSkyColor(net.minecraft.entity.Entity,%20float)">getSkyColor</a>, <a href="../../../net/minecraft/world/World.html#getSkyColorBody(net.minecraft.entity.Entity,%20float)">getSkyColorBody</a>, <a href="../../../net/minecraft/world/World.html#getSpawnPoint()">getSpawnPoint</a>, <a href="../../../net/minecraft/world/World.html#getStarBrightness(float)">getStarBrightness</a>, <a href="../../../net/minecraft/world/World.html#getStarBrightnessBody(float)">getStarBrightnessBody</a>, <a href="../../../net/minecraft/world/World.html#getStrongestIndirectPower(int,%20int,%20int)">getStrongestIndirectPower</a>, <a href="../../../net/minecraft/world/World.html#getSunBrightness(float)">getSunBrightness</a>, <a href="../../../net/minecraft/world/World.html#getSunBrightnessBody(float)">getSunBrightnessBody</a>, <a href="../../../net/minecraft/world/World.html#getSunBrightnessFactor(float)">getSunBrightnessFactor</a>, <a href="../../../net/minecraft/world/World.html#getTileEntity(int,%20int,%20int)">getTileEntity</a>, <a href="../../../net/minecraft/world/World.html#getTopBlock(int,%20int)">getTopBlock</a>, <a href="../../../net/minecraft/world/World.html#getTopSolidOrLiquidBlock(int,%20int)">getTopSolidOrLiquidBlock</a>, <a href="../../../net/minecraft/world/World.html#getTotalWorldTime()">getTotalWorldTime</a>, <a href="../../../net/minecraft/world/World.html#getUniqueDataId(java.lang.String)">getUniqueDataId</a>, <a href="../../../net/minecraft/world/World.html#getWeightedThunderStrength(float)">getWeightedThunderStrength</a>, <a href="../../../net/minecraft/world/World.html#getWorldChunkManager()">getWorldChunkManager</a>, <a href="../../../net/minecraft/world/World.html#getWorldInfo()">getWorldInfo</a>, <a href="../../../net/minecraft/world/World.html#getWorldTime()">getWorldTime</a>, <a href="../../../net/minecraft/world/World.html#handleMaterialAcceleration(net.minecraft.util.AxisAlignedBB,%20net.minecraft.block.material.Material,%20net.minecraft.entity.Entity)">handleMaterialAcceleration</a>, <a href="../../../net/minecraft/world/World.html#isAABBInMaterial(net.minecraft.util.AxisAlignedBB,%20net.minecraft.block.material.Material)">isAABBInMaterial</a>, <a href="../../../net/minecraft/world/World.html#isAirBlock(int,%20int,%20int)">isAirBlock</a>, <a href="../../../net/minecraft/world/World.html#isAnyLiquid(net.minecraft.util.AxisAlignedBB)">isAnyLiquid</a>, <a href="../../../net/minecraft/world/World.html#isBlockFreezable(int,%20int,%20int)">isBlockFreezable</a>, <a href="../../../net/minecraft/world/World.html#isBlockFreezableNaturally(int,%20int,%20int)">isBlockFreezableNaturally</a>, <a href="../../../net/minecraft/world/World.html#isBlockHighHumidity(int,%20int,%20int)">isBlockHighHumidity</a>, <a href="../../../net/minecraft/world/World.html#isBlockIndirectlyGettingPowered(int,%20int,%20int)">isBlockIndirectlyGettingPowered</a>, <a href="../../../net/minecraft/world/World.html#isBlockNormalCubeDefault(int,%20int,%20int,%20boolean)">isBlockNormalCubeDefault</a>, <a href="../../../net/minecraft/world/World.html#isBlockProvidingPowerTo(int,%20int,%20int,%20int)">isBlockProvidingPowerTo</a>, <a href="../../../net/minecraft/world/World.html#isDaytime()">isDaytime</a>, <a href="../../../net/minecraft/world/World.html#isMaterialInBB(net.minecraft.util.AxisAlignedBB,%20net.minecraft.block.material.Material)">isMaterialInBB</a>, <a href="../../../net/minecraft/world/World.html#isRaining()">isRaining</a>, <a href="../../../net/minecraft/world/World.html#isSideSolid(int,%20int,%20int,%20net.minecraftforge.common.util.ForgeDirection)">isSideSolid</a>, <a href="../../../net/minecraft/world/World.html#isSideSolid(int,%20int,%20int,%20net.minecraftforge.common.util.ForgeDirection,%20boolean)">isSideSolid</a>, <a href="../../../net/minecraft/world/World.html#isThundering()">isThundering</a>, <a href="../../../net/minecraft/world/World.html#joinEntityInSurroundings(net.minecraft.entity.Entity)">joinEntityInSurroundings</a>, <a href="../../../net/minecraft/world/World.html#loadItemData(java.lang.Class,%20java.lang.String)">loadItemData</a>, <a href="../../../net/minecraft/world/World.html#makeFireworks(double,%20double,%20double,%20double,%20double,%20double,%20net.minecraft.nbt.NBTTagCompound)">makeFireworks</a>, <a href="../../../net/minecraft/world/World.html#markAndNotifyBlock(int,%20int,%20int,%20net.minecraft.world.chunk.Chunk,%20net.minecraft.block.Block,%20net.minecraft.block.Block,%20int)">markAndNotifyBlock</a>, <a href="../../../net/minecraft/world/World.html#markBlockForUpdate(int,%20int,%20int)">markBlockForUpdate</a>, <a href="../../../net/minecraft/world/World.html#markBlockRangeForRenderUpdate(int,%20int,%20int,%20int,%20int,%20int)">markBlockRangeForRenderUpdate</a>, <a href="../../../net/minecraft/world/World.html#markBlocksDirtyVertical(int,%20int,%20int,%20int)">markBlocksDirtyVertical</a>, <a href="../../../net/minecraft/world/World.html#markTileEntityChunkModified(int,%20int,%20int,%20net.minecraft.tileentity.TileEntity)">markTileEntityChunkModified</a>, <a href="../../../net/minecraft/world/World.html#notifyBlockChange(int,%20int,%20int,%20net.minecraft.block.Block)">notifyBlockChange</a>, <a href="../../../net/minecraft/world/World.html#notifyBlockOfNeighborChange(int,%20int,%20int,%20net.minecraft.block.Block)">notifyBlockOfNeighborChange</a>, <a href="../../../net/minecraft/world/World.html#notifyBlocksOfNeighborChange(int,%20int,%20int,%20net.minecraft.block.Block)">notifyBlocksOfNeighborChange</a>, <a href="../../../net/minecraft/world/World.html#notifyBlocksOfNeighborChange(int,%20int,%20int,%20net.minecraft.block.Block,%20int)">notifyBlocksOfNeighborChange</a>, <a href="../../../net/minecraft/world/World.html#playAuxSFX(int,%20int,%20int,%20int,%20int)">playAuxSFX</a>, <a href="../../../net/minecraft/world/World.html#playAuxSFXAtEntity(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int,%20int,%20int)">playAuxSFXAtEntity</a>, <a href="../../../net/minecraft/world/World.html#playBroadcastSound(int,%20int,%20int,%20int,%20int)">playBroadcastSound</a>, <a href="../../../net/minecraft/world/World.html#playRecord(java.lang.String,%20int,%20int,%20int)">playRecord</a>, <a href="../../../net/minecraft/world/World.html#playSound(double,%20double,%20double,%20java.lang.String,%20float,%20float,%20boolean)">playSound</a>, <a href="../../../net/minecraft/world/World.html#playSoundAtEntity(net.minecraft.entity.Entity,%20java.lang.String,%20float,%20float)">playSoundAtEntity</a>, <a href="../../../net/minecraft/world/World.html#playSoundEffect(double,%20double,%20double,%20java.lang.String,%20float,%20float)">playSoundEffect</a>, <a href="../../../net/minecraft/world/World.html#playSoundToNearExcept(net.minecraft.entity.player.EntityPlayer,%20java.lang.String,%20float,%20float)">playSoundToNearExcept</a>, <a href="../../../net/minecraft/world/World.html#rayTraceBlocks(net.minecraft.util.Vec3,%20net.minecraft.util.Vec3)">rayTraceBlocks</a>, <a href="../../../net/minecraft/world/World.html#rayTraceBlocks(net.minecraft.util.Vec3,%20net.minecraft.util.Vec3,%20boolean)">rayTraceBlocks</a>, <a href="../../../net/minecraft/world/World.html#removeEntity(net.minecraft.entity.Entity)">removeEntity</a>, <a href="../../../net/minecraft/world/World.html#removePlayerEntityDangerously(net.minecraft.entity.Entity)">removePlayerEntityDangerously</a>, <a href="../../../net/minecraft/world/World.html#removeTileEntity(int,%20int,%20int)">removeTileEntity</a>, <a href="../../../net/minecraft/world/World.html#removeWorldAccess(net.minecraft.world.IWorldAccess)">removeWorldAccess</a>, <a href="../../../net/minecraft/world/World.html#selectEntitiesWithinAABB(java.lang.Class,%20net.minecraft.util.AxisAlignedBB,%20net.minecraft.command.IEntitySelector)">selectEntitiesWithinAABB</a>, <a href="../../../net/minecraft/world/World.html#sendQuittingDisconnectingPacket()">sendQuittingDisconnectingPacket</a>, <a href="../../../net/minecraft/world/World.html#setActivePlayerChunksAndCheckLight()">setActivePlayerChunksAndCheckLight</a>, <a href="../../../net/minecraft/world/World.html#setAllowedSpawnTypes(boolean,%20boolean)">setAllowedSpawnTypes</a>, <a href="../../../net/minecraft/world/World.html#setBlock(int,%20int,%20int,%20net.minecraft.block.Block)">setBlock</a>, <a href="../../../net/minecraft/world/World.html#setBlock(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">setBlock</a>, <a href="../../../net/minecraft/world/World.html#setBlockMetadataWithNotify(int,%20int,%20int,%20int,%20int)">setBlockMetadataWithNotify</a>, <a href="../../../net/minecraft/world/World.html#setBlockToAir(int,%20int,%20int)">setBlockToAir</a>, <a href="../../../net/minecraft/world/World.html#setItemData(java.lang.String,%20net.minecraft.world.WorldSavedData)">setItemData</a>, <a href="../../../net/minecraft/world/World.html#setLightValue(net.minecraft.world.EnumSkyBlock,%20int,%20int,%20int,%20int)">setLightValue</a>, <a href="../../../net/minecraft/world/World.html#setRainStrength(float)">setRainStrength</a>, <a href="../../../net/minecraft/world/World.html#setRandomSeed(int,%20int,%20int)">setRandomSeed</a>, <a href="../../../net/minecraft/world/World.html#setSpawnLocation(int,%20int,%20int)">setSpawnLocation</a>, <a href="../../../net/minecraft/world/World.html#setThunderStrength(float)">setThunderStrength</a>, <a href="../../../net/minecraft/world/World.html#setTileEntity(int,%20int,%20int,%20net.minecraft.tileentity.TileEntity)">setTileEntity</a>, <a href="../../../net/minecraft/world/World.html#setWorldTime(long)">setWorldTime</a>, <a href="../../../net/minecraft/world/World.html#spawnEntityInWorld(net.minecraft.entity.Entity)">spawnEntityInWorld</a>, <a href="../../../net/minecraft/world/World.html#spawnParticle(java.lang.String,%20double,%20double,%20double,%20double,%20double,%20double)">spawnParticle</a>, <a href="../../../net/minecraft/world/World.html#unloadEntities(java.util.List)">unloadEntities</a>, <a href="../../../net/minecraft/world/World.html#updateEntity(net.minecraft.entity.Entity)">updateEntity</a>, <a href="../../../net/minecraft/world/World.html#updateLightByType(net.minecraft.world.EnumSkyBlock,%20int,%20int,%20int)">updateLightByType</a>, <a href="../../../net/minecraft/world/World.html#updateWeatherBody()">updateWeatherBody</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="theChunkProviderServer">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>theChunkProviderServer</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/world/gen/ChunkProviderServer.html" title="class in net.minecraft.world.gen">ChunkProviderServer</a> theChunkProviderServer</pre>
</li>
</ul>
<a name="levelSaving">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>levelSaving</h4>
<pre>public&nbsp;boolean levelSaving</pre>
</li>
</ul>
<a name="bonusChestContent">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bonusChestContent</h4>
<pre>public static final&nbsp;<a href="../../../net/minecraft/util/WeightedRandomChestContent.html" title="class in net.minecraft.util">WeightedRandomChestContent</a>[] bonusChestContent</pre>
</li>
</ul>
<a name="doneChunks">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>doneChunks</h4>
<pre>protected&nbsp;java.util.Set&lt;<a href="../../../net/minecraft/world/ChunkCoordIntPair.html" title="class in net.minecraft.world">ChunkCoordIntPair</a>&gt; doneChunks</pre>
<div class="block">Stores the recently processed (lighting) chunks</div>
</li>
</ul>
<a name="customTeleporters">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>customTeleporters</h4>
<pre>public&nbsp;java.util.List&lt;<a href="../../../net/minecraft/world/Teleporter.html" title="class in net.minecraft.world">Teleporter</a>&gt; customTeleporters</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="WorldServer(net.minecraft.server.MinecraftServer, net.minecraft.world.storage.ISaveHandler, java.lang.String, int, net.minecraft.world.WorldSettings, net.minecraft.profiler.Profiler)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>WorldServer</h4>
<pre>public&nbsp;WorldServer(<a href="../../../net/minecraft/server/MinecraftServer.html" title="class in net.minecraft.server">MinecraftServer</a>&nbsp;p_i45284_1_,
           <a href="../../../net/minecraft/world/storage/ISaveHandler.html" title="interface in net.minecraft.world.storage">ISaveHandler</a>&nbsp;p_i45284_2_,
           java.lang.String&nbsp;p_i45284_3_,
           int&nbsp;p_i45284_4_,
           <a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_i45284_5_,
           <a href="../../../net/minecraft/profiler/Profiler.html" title="class in net.minecraft.profiler">Profiler</a>&nbsp;p_i45284_6_)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="tick()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tick</h4>
<pre>public&nbsp;void&nbsp;tick()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#tick()">tick</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="spawnRandomCreature(net.minecraft.entity.EnumCreatureType, int, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>spawnRandomCreature</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/world/biome/BiomeGenBase.SpawnListEntry.html" title="class in net.minecraft.world.biome">BiomeGenBase.SpawnListEntry</a>&nbsp;spawnRandomCreature(<a href="../../../net/minecraft/entity/EnumCreatureType.html" title="enum in net.minecraft.entity">EnumCreatureType</a>&nbsp;p_73057_1_,
                                              int&nbsp;p_73057_2_,
                                              int&nbsp;p_73057_3_,
                                              int&nbsp;p_73057_4_)</pre>
</li>
</ul>
<a name="updateAllPlayersSleepingFlag()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>updateAllPlayersSleepingFlag</h4>
<pre>public&nbsp;void&nbsp;updateAllPlayersSleepingFlag()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#updateAllPlayersSleepingFlag()">updateAllPlayersSleepingFlag</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="wakeAllPlayers()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wakeAllPlayers</h4>
<pre>protected&nbsp;void&nbsp;wakeAllPlayers()</pre>
</li>
</ul>
<a name="areAllPlayersAsleep()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>areAllPlayersAsleep</h4>
<pre>public&nbsp;boolean&nbsp;areAllPlayersAsleep()</pre>
</li>
</ul>
<a name="setSpawnLocation()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSpawnLocation</h4>
<pre>public&nbsp;void&nbsp;setSpawnLocation()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#setSpawnLocation()">setSpawnLocation</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="func_147456_g()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_147456_g</h4>
<pre>protected&nbsp;void&nbsp;func_147456_g()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#func_147456_g()">func_147456_g</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="isBlockTickScheduledThisTick(int, int, int, net.minecraft.block.Block)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isBlockTickScheduledThisTick</h4>
<pre>public&nbsp;boolean&nbsp;isBlockTickScheduledThisTick(int&nbsp;p_147477_1_,
                                   int&nbsp;p_147477_2_,
                                   int&nbsp;p_147477_3_,
                                   <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147477_4_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#isBlockTickScheduledThisTick(int,%20int,%20int,%20net.minecraft.block.Block)">isBlockTickScheduledThisTick</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="scheduleBlockUpdate(int, int, int, net.minecraft.block.Block, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scheduleBlockUpdate</h4>
<pre>public&nbsp;void&nbsp;scheduleBlockUpdate(int&nbsp;p_147464_1_,
                       int&nbsp;p_147464_2_,
                       int&nbsp;p_147464_3_,
                       <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147464_4_,
                       int&nbsp;p_147464_5_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#scheduleBlockUpdate(int,%20int,%20int,%20net.minecraft.block.Block,%20int)">scheduleBlockUpdate</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="scheduleBlockUpdateWithPriority(int, int, int, net.minecraft.block.Block, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scheduleBlockUpdateWithPriority</h4>
<pre>public&nbsp;void&nbsp;scheduleBlockUpdateWithPriority(int&nbsp;p_147454_1_,
                                   int&nbsp;p_147454_2_,
                                   int&nbsp;p_147454_3_,
                                   <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147454_4_,
                                   int&nbsp;p_147454_5_,
                                   int&nbsp;p_147454_6_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#scheduleBlockUpdateWithPriority(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">scheduleBlockUpdateWithPriority</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="func_147446_b(int, int, int, net.minecraft.block.Block, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_147446_b</h4>
<pre>public&nbsp;void&nbsp;func_147446_b(int&nbsp;p_147446_1_,
                 int&nbsp;p_147446_2_,
                 int&nbsp;p_147446_3_,
                 <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147446_4_,
                 int&nbsp;p_147446_5_,
                 int&nbsp;p_147446_6_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#func_147446_b(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">func_147446_b</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="updateEntities()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>updateEntities</h4>
<pre>public&nbsp;void&nbsp;updateEntities()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#updateEntities()">updateEntities</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="resetUpdateEntityTick()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>resetUpdateEntityTick</h4>
<pre>public&nbsp;void&nbsp;resetUpdateEntityTick()</pre>
</li>
</ul>
<a name="tickUpdates(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tickUpdates</h4>
<pre>public&nbsp;boolean&nbsp;tickUpdates(boolean&nbsp;p_72955_1_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#tickUpdates(boolean)">tickUpdates</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="getPendingBlockUpdates(net.minecraft.world.chunk.Chunk, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPendingBlockUpdates</h4>
<pre>public&nbsp;java.util.List&nbsp;getPendingBlockUpdates(<a href="../../../net/minecraft/world/chunk/Chunk.html" title="class in net.minecraft.world.chunk">Chunk</a>&nbsp;p_72920_1_,
                                    boolean&nbsp;p_72920_2_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#getPendingBlockUpdates(net.minecraft.world.chunk.Chunk,%20boolean)">getPendingBlockUpdates</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="updateEntityWithOptionalForce(net.minecraft.entity.Entity, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>updateEntityWithOptionalForce</h4>
<pre>public&nbsp;void&nbsp;updateEntityWithOptionalForce(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72866_1_,
                                 boolean&nbsp;p_72866_2_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#updateEntityWithOptionalForce(net.minecraft.entity.Entity,%20boolean)">updateEntityWithOptionalForce</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="createChunkProvider()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createChunkProvider</h4>
<pre>protected&nbsp;<a href="../../../net/minecraft/world/chunk/IChunkProvider.html" title="interface in net.minecraft.world.chunk">IChunkProvider</a>&nbsp;createChunkProvider()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#createChunkProvider()">createChunkProvider</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="func_147486_a(int, int, int, int, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_147486_a</h4>
<pre>public&nbsp;java.util.List&nbsp;func_147486_a(int&nbsp;p_147486_1_,
                           int&nbsp;p_147486_2_,
                           int&nbsp;p_147486_3_,
                           int&nbsp;p_147486_4_,
                           int&nbsp;p_147486_5_,
                           int&nbsp;p_147486_6_)</pre>
</li>
</ul>
<a name="canMineBlock(net.minecraft.entity.player.EntityPlayer, int, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>canMineBlock</h4>
<pre>public&nbsp;boolean&nbsp;canMineBlock(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a>&nbsp;p_72962_1_,
                   int&nbsp;p_72962_2_,
                   int&nbsp;p_72962_3_,
                   int&nbsp;p_72962_4_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#canMineBlock(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int)">canMineBlock</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="canMineBlockBody(net.minecraft.entity.player.EntityPlayer, int, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>canMineBlockBody</h4>
<pre>public&nbsp;boolean&nbsp;canMineBlockBody(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a>&nbsp;par1EntityPlayer,
                       int&nbsp;par2,
                       int&nbsp;par3,
                       int&nbsp;par4)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#canMineBlockBody(net.minecraft.entity.player.EntityPlayer,%20int,%20int,%20int)">canMineBlockBody</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="initialize(net.minecraft.world.WorldSettings)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>initialize</h4>
<pre>protected&nbsp;void&nbsp;initialize(<a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_72963_1_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#initialize(net.minecraft.world.WorldSettings)">initialize</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="createSpawnPosition(net.minecraft.world.WorldSettings)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSpawnPosition</h4>
<pre>protected&nbsp;void&nbsp;createSpawnPosition(<a href="../../../net/minecraft/world/WorldSettings.html" title="class in net.minecraft.world">WorldSettings</a>&nbsp;p_73052_1_)</pre>
</li>
</ul>
<a name="createBonusChest()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createBonusChest</h4>
<pre>protected&nbsp;void&nbsp;createBonusChest()</pre>
</li>
</ul>
<a name="getEntrancePortalLocation()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntrancePortalLocation</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/util/ChunkCoordinates.html" title="class in net.minecraft.util">ChunkCoordinates</a>&nbsp;getEntrancePortalLocation()</pre>
</li>
</ul>
<a name="saveAllChunks(boolean, net.minecraft.util.IProgressUpdate)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>saveAllChunks</h4>
<pre>public&nbsp;void&nbsp;saveAllChunks(boolean&nbsp;p_73044_1_,
                 <a href="../../../net/minecraft/util/IProgressUpdate.html" title="interface in net.minecraft.util">IProgressUpdate</a>&nbsp;p_73044_2_)
                   throws <a href="../../../net/minecraft/world/MinecraftException.html" title="class in net.minecraft.world">MinecraftException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../net/minecraft/world/MinecraftException.html" title="class in net.minecraft.world">MinecraftException</a></code></dd></dl>
</li>
</ul>
<a name="saveChunkData()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>saveChunkData</h4>
<pre>public&nbsp;void&nbsp;saveChunkData()</pre>
</li>
</ul>
<a name="saveLevel()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>saveLevel</h4>
<pre>protected&nbsp;void&nbsp;saveLevel()
                  throws <a href="../../../net/minecraft/world/MinecraftException.html" title="class in net.minecraft.world">MinecraftException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../net/minecraft/world/MinecraftException.html" title="class in net.minecraft.world">MinecraftException</a></code></dd></dl>
</li>
</ul>
<a name="onEntityAdded(net.minecraft.entity.Entity)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onEntityAdded</h4>
<pre>public&nbsp;void&nbsp;onEntityAdded(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72923_1_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#onEntityAdded(net.minecraft.entity.Entity)">onEntityAdded</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="onEntityRemoved(net.minecraft.entity.Entity)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onEntityRemoved</h4>
<pre>public&nbsp;void&nbsp;onEntityRemoved(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72847_1_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#onEntityRemoved(net.minecraft.entity.Entity)">onEntityRemoved</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="getEntityByID(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntityByID</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;getEntityByID(int&nbsp;p_73045_1_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#getEntityByID(int)">getEntityByID</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="addWeatherEffect(net.minecraft.entity.Entity)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addWeatherEffect</h4>
<pre>public&nbsp;boolean&nbsp;addWeatherEffect(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72942_1_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#addWeatherEffect(net.minecraft.entity.Entity)">addWeatherEffect</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="setEntityState(net.minecraft.entity.Entity, byte)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEntityState</h4>
<pre>public&nbsp;void&nbsp;setEntityState(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72960_1_,
                  byte&nbsp;p_72960_2_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#setEntityState(net.minecraft.entity.Entity,%20byte)">setEntityState</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="newExplosion(net.minecraft.entity.Entity, double, double, double, float, boolean, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>newExplosion</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/world/Explosion.html" title="class in net.minecraft.world">Explosion</a>&nbsp;newExplosion(<a href="../../../net/minecraft/entity/Entity.html" title="class in net.minecraft.entity">Entity</a>&nbsp;p_72885_1_,
                     double&nbsp;p_72885_2_,
                     double&nbsp;p_72885_4_,
                     double&nbsp;p_72885_6_,
                     float&nbsp;p_72885_8_,
                     boolean&nbsp;p_72885_9_,
                     boolean&nbsp;p_72885_10_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#newExplosion(net.minecraft.entity.Entity,%20double,%20double,%20double,%20float,%20boolean,%20boolean)">newExplosion</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="addBlockEvent(int, int, int, net.minecraft.block.Block, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addBlockEvent</h4>
<pre>public&nbsp;void&nbsp;addBlockEvent(int&nbsp;p_147452_1_,
                 int&nbsp;p_147452_2_,
                 int&nbsp;p_147452_3_,
                 <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a>&nbsp;p_147452_4_,
                 int&nbsp;p_147452_5_,
                 int&nbsp;p_147452_6_)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#addBlockEvent(int,%20int,%20int,%20net.minecraft.block.Block,%20int,%20int)">addBlockEvent</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="flush()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>flush</h4>
<pre>public&nbsp;void&nbsp;flush()</pre>
</li>
</ul>
<a name="updateWeather()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>updateWeather</h4>
<pre>protected&nbsp;void&nbsp;updateWeather()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#updateWeather()">updateWeather</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="func_152379_p()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_152379_p</h4>
<pre>protected&nbsp;int&nbsp;func_152379_p()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/world/World.html#func_152379_p()">func_152379_p</a></code>&nbsp;in class&nbsp;<code><a href="../../../net/minecraft/world/World.html" title="class in net.minecraft.world">World</a></code></dd>
</dl>
</li>
</ul>
<a name="func_73046_m()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_73046_m</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/server/MinecraftServer.html" title="class in net.minecraft.server">MinecraftServer</a>&nbsp;func_73046_m()</pre>
</li>
</ul>
<a name="getEntityTracker()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntityTracker</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/entity/EntityTracker.html" title="class in net.minecraft.entity">EntityTracker</a>&nbsp;getEntityTracker()</pre>
</li>
</ul>
<a name="getPlayerManager()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayerManager</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/server/management/PlayerManager.html" title="class in net.minecraft.server.management">PlayerManager</a>&nbsp;getPlayerManager()</pre>
</li>
</ul>
<a name="getDefaultTeleporter()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultTeleporter</h4>
<pre>public&nbsp;<a href="../../../net/minecraft/world/Teleporter.html" title="class in net.minecraft.world">Teleporter</a>&nbsp;getDefaultTeleporter()</pre>
</li>
</ul>
<a name="func_147487_a(java.lang.String, double, double, double, int, double, double, double, double)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>func_147487_a</h4>
<pre>public&nbsp;void&nbsp;func_147487_a(java.lang.String&nbsp;p_147487_1_,
                 double&nbsp;p_147487_2_,
                 double&nbsp;p_147487_4_,
                 double&nbsp;p_147487_6_,
                 int&nbsp;p_147487_8_,
                 double&nbsp;p_147487_9_,
                 double&nbsp;p_147487_11_,
                 double&nbsp;p_147487_13_,
                 double&nbsp;p_147487_15_)</pre>
</li>
</ul>
<a name="getChunkSaveLocation()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getChunkSaveLocation</h4>
<pre>public&nbsp;java.io.File&nbsp;getChunkSaveLocation()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../net/minecraft/world/WorldSavedData.html" title="class in net.minecraft.world"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../net/minecraft/world/WorldServerMulti.html" title="class in net.minecraft.world"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/world/WorldServer.html" target="_top">Frames</a></li>
<li><a href="WorldServer.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>