Skip to content

Commit

Permalink
update core
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Jan 29, 2023
1 parent 3199a7b commit 44b63e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>me.hsgamer.bettergui</groupId>
<artifactId>addon-parent</artifactId>
<version>1.0</version>
<version>2.0</version>
</parent>

<artifactId>XCross</artifactId>
<version>1.1</version>
<version>2.0</version>
<packaging>jar</packaging>

<name>XCross</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.cryptomorin.xseries.NoteBlockMusic;
import me.hsgamer.bettergui.api.action.BaseAction;
import me.hsgamer.bettergui.builder.ActionBuilder;
import me.hsgamer.hscore.task.BatchRunnable;
import me.hsgamer.hscore.task.element.TaskProcess;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;

Expand All @@ -15,7 +15,7 @@ public MusicAction(ActionBuilder.Input input) {
}

@Override
public void accept(UUID uuid, BatchRunnable.Process process) {
public void accept(UUID uuid, TaskProcess process) {
String replacedString = getReplacedString(uuid);
Player player = Bukkit.getPlayer(uuid);
if (player == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.cryptomorin.xseries.XSound;
import me.hsgamer.bettergui.api.action.BaseAction;
import me.hsgamer.bettergui.builder.ActionBuilder;
import me.hsgamer.hscore.task.BatchRunnable;
import me.hsgamer.hscore.task.element.TaskProcess;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;

Expand All @@ -15,7 +15,7 @@ public XSoundAction(ActionBuilder.Input input) {
}

@Override
public void accept(UUID uuid, BatchRunnable.Process process) {
public void accept(UUID uuid, TaskProcess process) {
String replacedString = getReplacedString(uuid);
Player player = Bukkit.getPlayer(uuid);
if (player == null) {
Expand Down

0 comments on commit 44b63e0

Please sign in to comment.