mirror of https://github.com/LOOHP/Limbo.git
Compare commits
4 Commits
89613da4ee
...
7d34eca3fe
| Author | SHA1 | Date |
|---|---|---|
|
|
7d34eca3fe | |
|
|
69d0270925 | |
|
|
38f3c41bf5 | |
|
|
72fce754ae |
|
|
@ -1,6 +1,6 @@
|
|||
# Limbo
|
||||
[](http://ci.loohpjames.com/job/Limbo/)
|
||||
## Standalone Limbo Minecraft Server (Currently 1.21.8)
|
||||
## Standalone Limbo Minecraft Server (Currently 1.21.9)
|
||||
|
||||
https://www.spigotmc.org/resources/82468/
|
||||
|
||||
|
|
@ -18,7 +18,7 @@ IP: mc.loohpjames.com
|
|||
```
|
||||

|
||||
***
|
||||
### Downloads (1.17.1-1.21.8)
|
||||
### Downloads (1.17.1-1.21.9)
|
||||
- [Jenkins](http://ci.loohpjames.com/job/Limbo/)
|
||||
***
|
||||
### Offical Plugins
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -229,7 +229,7 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>3.14.0</version>
|
||||
<version>3.18.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.Querz</groupId>
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ public class Console implements CommandSender {
|
|||
protected final PrintStream logs;
|
||||
|
||||
public Console(InputStream in, PrintStream out, PrintStream err) throws IOException {
|
||||
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date());
|
||||
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date()).replace(":", "");
|
||||
File dir = new File("logs");
|
||||
dir.mkdirs();
|
||||
File logs = new File(dir, fileName);
|
||||
|
|
|
|||
Loading…
Reference in New Issue