Skip to content

Commit 8fc79b7

Browse files
committed
Change port
1 parent 242cd28 commit 8fc79b7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

public/api/data.sjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ const util = require("minecraft-server-util");
44
var res = {};
55

66
util
7-
.status("mc.stibarc.com", 25561)
7+
.status("mc.stibarc.com", 25565)
88
.then((response) => {
99
res.status = response;
1010
util
11-
.queryFull("mc.stibarc.com", 25561)
11+
.queryFull("mc.stibarc.com", 25565)
1212
.then((response) => {
1313
res.query = response;
1414
sjs.writeStatusLine(200);

public/api/query.sjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const sjs = require("sprucehttp_sjs");
22
const util = require("minecraft-server-util");
33

44
util
5-
.queryFull("mc.stibarc.com", 25561)
5+
.queryFull("mc.stibarc.com", 25565)
66
.then((response) => {
77
sjs.writeStatusLine(200);
88
sjs.writeHeader("Content-Type", "application/json");

public/api/status.sjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const sjs = require("sprucehttp_sjs");
22
const util = require("minecraft-server-util");
33

44
util
5-
.status("mc.stibarc.com", 25561)
5+
.status("mc.stibarc.com", 25565)
66
.then((response) => {
77
sjs.writeStatusLine(200);
88
sjs.writeHeader("Content-Type", "application/json");

0 commit comments

Comments
 (0)