Skip to content

Commit

Permalink
Revert "Build with SportPaper instead of CraftBukkit"
Browse files Browse the repository at this point in the history
This reverts commit a218e6a.
  • Loading branch information
calcastor committed Jun 12, 2024
1 parent eb2494f commit 91e50ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bukkit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
compile 'org.bukkit.craftbukkit:Craftbukkit_1_11:1.11'
compile 'org.bukkit.craftbukkit:Craftbukkit_1_10:1.10'
compile 'org.bukkit.craftbukkit:Craftbukkit_1_9:1.9.4'
compile 'app.ashcon:sportpaper:1.8.8-R0.1-SNAPSHOT'
compile 'org.bukkit.craftbukkit:Craftbukkit_1_8:1.8.8'
compile 'org.bukkit.craftbukkit:Craftbukkit_1_7:1.7.10'
compile 'com.github.MilkBowl:VaultAPI:1.7'
compile 'me.ryanhamshire:GriefPrevention:11.5.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -721,12 +721,12 @@ public int getOpacityBrightnessPair(ChunkSection section, int x, int y, int z) {
@Override
public void relightBlock(int x, int y, int z) {
pos.c(x, y, z);
nmsWorld.updateLight(EnumSkyBlock.BLOCK, pos);
nmsWorld.c(EnumSkyBlock.BLOCK, pos);
}

@Override
public void relightSky(int x, int y, int z) {
pos.c(x, y, z);
nmsWorld.updateLight(EnumSkyBlock.SKY, pos);
nmsWorld.c(EnumSkyBlock.SKY, pos);
}
}

0 comments on commit 91e50ad

Please sign in to comment.