Skip to content

Commit

Permalink
removed BedrockWorld and migrated to BedrockOfflinePlayer
Browse files Browse the repository at this point in the history
  • Loading branch information
kronnox committed Dec 26, 2021
1 parent 4b95089 commit 3cafba4
Show file tree
Hide file tree
Showing 14 changed files with 245 additions and 728 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

package de.cubenation.bedrock.bukkit.api.exception;

import de.cubenation.bedrock.bukkit.api.ebean.BedrockPlayer;
import de.cubenation.bedrock.core.model.BedrockOfflinePlayer;

import java.io.IOException;
import java.util.ArrayList;
Expand All @@ -42,11 +42,11 @@ public BedrockEbeanEntityNotFoundException(Class clazz, int id) {
super(String.format("Could not find bedrock ebean entity %s for id %s", clazz.toString(), id));
}

public BedrockEbeanEntityNotFoundException(Class<BedrockPlayer> clazz, ArrayList<Integer> ids) {
public BedrockEbeanEntityNotFoundException(Class<BedrockOfflinePlayer> clazz, ArrayList<Integer> ids) {
super(String.format("Could not find bedrock ebean entity %s for ids %s", clazz.toString(), ids));
}

public BedrockEbeanEntityNotFoundException(ArrayList<String> uuids, Class<BedrockPlayer> clazz) {
public BedrockEbeanEntityNotFoundException(ArrayList<String> uuids, Class<BedrockOfflinePlayer> clazz) {
super(String.format("Could not find bedrock ebean entity %s for ids %s", clazz.toString(), uuids));
}
}
Loading

0 comments on commit 3cafba4

Please sign in to comment.