From 93fcfe21078986b0f29f09c3fc4ee7cfc9816579 Mon Sep 17 00:00:00 2001 From: Major- Date: Fri, 14 Feb 2014 13:58:53 +0000 Subject: [PATCH] Change default spawn position to tutorial island. --- src/org/apollo/io/player/impl/BinaryPlayerLoader.java | 2 +- src/org/apollo/io/player/impl/DummyPlayerLoader.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/apollo/io/player/impl/BinaryPlayerLoader.java b/src/org/apollo/io/player/impl/BinaryPlayerLoader.java index 75751002..d0a0a39a 100644 --- a/src/org/apollo/io/player/impl/BinaryPlayerLoader.java +++ b/src/org/apollo/io/player/impl/BinaryPlayerLoader.java @@ -35,7 +35,7 @@ public final class BinaryPlayerLoader implements PlayerLoader { /** * The default spawn position. */ - private static final Position SPAWN_POSITION = new Position(3222, 3222); + private static final Position SPAWN_POSITION = new Position(3093, 3104); @Override public PlayerLoaderResponse loadPlayer(PlayerCredentials credentials) throws IOException { diff --git a/src/org/apollo/io/player/impl/DummyPlayerLoader.java b/src/org/apollo/io/player/impl/DummyPlayerLoader.java index 7265825c..40419c38 100644 --- a/src/org/apollo/io/player/impl/DummyPlayerLoader.java +++ b/src/org/apollo/io/player/impl/DummyPlayerLoader.java @@ -18,7 +18,7 @@ public final class DummyPlayerLoader implements PlayerLoader { /** * The default spawn position for players loaded by this loader. */ - private static final Position DEFAULT_POSITION = new Position(3222, 3222); + private static final Position DEFAULT_POSITION = new Position(3093, 3104); @Override public PlayerLoaderResponse loadPlayer(PlayerCredentials credentials) {