We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 544856d commit 5de1634Copy full SHA for 5de1634
src/main/java/ar/net/argentum/servidor/Servidor.java
@@ -59,6 +59,10 @@ public static Servidor getServidor() {
59
60
public static void main(String[] args) throws IOException {
61
Servidor servidor = Servidor.getServidor();
62
+
63
+ LOGGER.info("Iniciando mundo...");
64
+ servidor.cargarMapas();
65
66
servidor.iniciar();
67
}
68
@@ -98,7 +102,6 @@ private Servidor() throws IOException {
98
102
this.personajes = new ConcurrentHashMap<>();
99
103
// Creamos una lista para mantener las conexiones
100
104
this.conexiones = new LinkedList<>();
101
- cargarMapas();
105
106
Runtime.getRuntime().addShutdownHook(new RutinaApagado(this));
107
0 commit comments