Update failure message when not being able to change scene

This commit is contained in:
Melledy 2022-04-18 10:17:19 -07:00
parent c1d5b1fc8f
commit e8261d568b

View File

@ -341,7 +341,7 @@ public class PlayerCommands {
boolean result = player.getWorld().transferPlayerToScene(player, sceneId, player.getPos());
if (!result) {
player.dropMessage("Scene does not exist!");
player.dropMessage("Scene does not exist or you are already in it");
}
}
}