Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 7da83f0

Browse files
Merge pull request #10 from shadowlol2/shadowlol2-patch-1
Shadow Patch
2 parents a9d98ff + 3391cff commit 7da83f0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

SkyblockSandboxBase/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@
148148
</dependency>
149149
<dependency>
150150
<groupId>net.citizensnpcs</groupId>
151-
<artifactId>citizens</artifactId>
152-
<version>2.0.27-SNAPSHOT</version>
151+
<artifactId>citizens-main</artifactId>
152+
<version>2.0.29-SNAPSHOT</version>
153153
<scope>provided</scope>
154154
</dependency>
155155
<dependency>
@@ -195,7 +195,7 @@
195195
<dependency>
196196
<groupId>dev.triumphteam</groupId>
197197
<artifactId>triumph-gui</artifactId>
198-
<version>3.0.4</version> <!-- replace version here -->
198+
<version>3.1.2</version>
199199
</dependency>
200200
<dependency>
201201
<groupId>com.github.koca2000</groupId>

SkyblockSandboxBase/src/main/java/net/atlas/SkyblockSandbox/database/mongo/MongoAH.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void connect() {
4141
if (dbinfo.getConfiguration().getBoolean("use"))
4242
client = MongoClients.create(dbinfo.getConfiguration().getString("uri"));
4343
else
44-
client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
44+
/*add your database uri*/ client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
4545

4646
MongoDatabase database = client.getDatabase("AtlasSandbox");
4747
col = database.getCollection("auctions");

SkyblockSandboxBase/src/main/java/net/atlas/SkyblockSandbox/database/mongo/MongoCoins.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void connect() {
4040
if (dbinfo.getConfiguration().getBoolean("use"))
4141
client = MongoClients.create(dbinfo.getConfiguration().getString("uri"));
4242
else
43-
client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
43+
/*add your database uri*/ client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
4444

4545
MongoDatabase database = client.getDatabase("AtlasSandbox");
4646
col = database.getCollection("playerdata");

SkyblockSandboxBase/src/main/java/net/atlas/SkyblockSandbox/database/mongo/MongoHypixelItems.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void connect() {
3535
if (dbinfo.getConfiguration().getBoolean("use"))
3636
client = MongoClients.create(dbinfo.getConfiguration().getString("uri"));
3737
else
38-
client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
38+
/*put your mongo uri in here*/ client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
3939

4040
MongoDatabase database = client.getDatabase("AtlasSandbox");
4141
col = database.getCollection("HypixelItems");

SkyblockSandboxBase/src/main/java/net/atlas/SkyblockSandbox/playerIsland/MongoIslands.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public void connect() {
3737
if (dbinfo.getConfiguration().getBoolean("use"))
3838
client = MongoClients.create(dbinfo.getConfiguration().getString("uri"));
3939
else
40-
client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
40+
/*add your mongo uri*/ client = MongoClients.create("mongodb+srv://atlasDevelopment:[email protected]/myFirstDatabase?retryWrites=true&w=majority");
4141

4242
MongoDatabase database = client.getDatabase("AtlasSandbox");
4343
col = database.getCollection("island_data");

0 commit comments

Comments
 (0)