mirror of https://github.com/LOOHP/Limbo.git
Compare commits
3 Commits
89613da4ee
...
7d34eca3fe
| Author | SHA1 | Date |
|---|---|---|
|
|
7d34eca3fe | |
|
|
69d0270925 | |
|
|
38f3c41bf5 |
|
|
@ -1,6 +1,6 @@
|
||||||
# Limbo
|
# Limbo
|
||||||
[](http://ci.loohpjames.com/job/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/
|
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/)
|
- [Jenkins](http://ci.loohpjames.com/job/Limbo/)
|
||||||
***
|
***
|
||||||
### Offical Plugins
|
### Offical Plugins
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ public class Console implements CommandSender {
|
||||||
protected final PrintStream logs;
|
protected final PrintStream logs;
|
||||||
|
|
||||||
public Console(InputStream in, PrintStream out, PrintStream err) throws IOException {
|
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");
|
File dir = new File("logs");
|
||||||
dir.mkdirs();
|
dir.mkdirs();
|
||||||
File logs = new File(dir, fileName);
|
File logs = new File(dir, fileName);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue