MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / func_180700_a

Method func_180700_a

src/main/java/net/minecraft/world/chunk/Chunk.java:1530–1563  ·  view source on GitHub ↗
(EnumFacing p_180700_1_)

Source from the content-addressed store, hash-verified

1528 }
1529
1530 private void func_180700_a(EnumFacing p_180700_1_)
1531 {
1532 if (this.isTerrainPopulated)
1533 {
1534 if (p_180700_1_ == EnumFacing.EAST)
1535 {
1536 for (int i = 0; i < 16; ++i)
1537 {
1538 this.func_150811_f(15, i);
1539 }
1540 }
1541 else if (p_180700_1_ == EnumFacing.WEST)
1542 {
1543 for (int j = 0; j < 16; ++j)
1544 {
1545 this.func_150811_f(0, j);
1546 }
1547 }
1548 else if (p_180700_1_ == EnumFacing.SOUTH)
1549 {
1550 for (int k = 0; k < 16; ++k)
1551 {
1552 this.func_150811_f(k, 15);
1553 }
1554 }
1555 else if (p_180700_1_ == EnumFacing.NORTH)
1556 {
1557 for (int l = 0; l < 16; ++l)
1558 {
1559 this.func_150811_f(l, 0);
1560 }
1561 }
1562 }
1563 }
1564
1565 private boolean func_150811_f(int x, int z)
1566 {

Callers 1

func_150809_pMethod · 0.80

Calls 1

func_150811_fMethod · 0.95

Tested by

no test coverage detected