FishingContestCutscene void return location set

This commit is contained in:
Tooze 2026-02-14 15:52:29 -05:00
parent 5274dd1888
commit 0fe0da5f1c
2 changed files with 2 additions and 2 deletions

View file

@ -178,7 +178,7 @@ public class FishingContestCutscene extends CutscenePlugin {
@Override
public Location getSpawnLocation() {
return null;
return Location.create(2639, 3437, 0);
}
@Override

View file

@ -135,7 +135,7 @@ public abstract class ActivityPlugin extends MapZone implements Plugin<Player> {
public boolean start(Player player, boolean login, Object... args) {
this.player = player;
player.setAttribute("/save:lastActivity", this.getName());
player.sendMessage(this.getName());
//player.sendMessage(this.getName());
return true;
}