Skip to content

Commit

Permalink
change from IBlockAccess to World
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueWeabo committed Jul 27, 2024
1 parent c7b5e9f commit 6fc7d10
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
package com.gtnewhorizons.mutecore.api.data;

import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;

public class WorldContainer {

private IBlockAccess world;
private World world;

public WorldContainer(IBlockAccess world) {
public WorldContainer(World world) {
this.world = world;
}

public IBlockAccess getWorld() {
public World getWorld() {
return world;
}

public void setWorld(IBlockAccess world) {
public void setWorld(World world) {
this.world = world;
}
}

0 comments on commit 6fc7d10

Please sign in to comment.