mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
Fixes #435
This commit is contained in:
parent
e6ea62ad1e
commit
8151ec8e1a
@ -171,14 +171,15 @@ public class PlotListener extends APlotListener {
|
||||
player.playEffect(lastLoc, Effect.RECORD_PLAY, 0);
|
||||
if (id == 0) {
|
||||
pp.deleteMeta("music");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
try {
|
||||
pp.setMeta("music", loc);
|
||||
player.playEffect(loc, Effect.RECORD_PLAY, Material.getMaterial(id));
|
||||
if (id != 0) {
|
||||
try {
|
||||
pp.setMeta("music", loc);
|
||||
player.playEffect(loc, Effect.RECORD_PLAY, Material.getMaterial(id));
|
||||
}
|
||||
catch (Exception e) {}
|
||||
}
|
||||
catch (Exception e) {}
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -201,11 +202,11 @@ public class PlotListener extends APlotListener {
|
||||
TaskManager.runTaskLaterAsync(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
PlotId id = (PlotId) pp.getMeta("lastplotid");
|
||||
if (plot.id.equals(id)) {
|
||||
Plot lastPlot = (Plot) pp.getMeta("lastplot");
|
||||
if (plot.id.equals(lastPlot.id)) {
|
||||
Map<String, String> replacements = new HashMap<>();
|
||||
replacements.put("%x%", id.x + "");
|
||||
replacements.put("%z%", id.y + "");
|
||||
replacements.put("%x%", lastPlot.id.x + "");
|
||||
replacements.put("%z%", lastPlot.id.y + "");
|
||||
replacements.put("%world%", plot.world);
|
||||
replacements.put("%greeting%", greeting);
|
||||
replacements.put("%alias", plot.toString());
|
||||
|
Loading…
Reference in New Issue
Block a user