This repository was archived by the owner on Feb 26, 2024. It is now read-only.
File tree 5 files changed +7
-7
lines changed
src/main/java/net/atlas/SkyblockSandbox
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 148
148
</dependency >
149
149
<dependency >
150
150
<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 >
153
153
<scope >provided</scope >
154
154
</dependency >
155
155
<dependency >
195
195
<dependency >
196
196
<groupId >dev.triumphteam</groupId >
197
197
<artifactId >triumph-gui</artifactId >
198
- <version >3.0.4 </version > <!-- replace version here -- >
198
+ <version >3.1.2 </version >
199
199
</dependency >
200
200
<dependency >
201
201
<groupId >com.github.koca2000</groupId >
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public void connect() {
41
41
if (dbinfo .getConfiguration ().getBoolean ("use" ))
42
42
client = MongoClients .create (dbinfo .getConfiguration ().getString ("uri" ));
43
43
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" );
45
45
46
46
MongoDatabase database = client .getDatabase ("AtlasSandbox" );
47
47
col = database .getCollection ("auctions" );
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public void connect() {
40
40
if (dbinfo .getConfiguration ().getBoolean ("use" ))
41
41
client = MongoClients .create (dbinfo .getConfiguration ().getString ("uri" ));
42
42
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" );
44
44
45
45
MongoDatabase database = client .getDatabase ("AtlasSandbox" );
46
46
col = database .getCollection ("playerdata" );
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public void connect() {
35
35
if (dbinfo .getConfiguration ().getBoolean ("use" ))
36
36
client = MongoClients .create (dbinfo .getConfiguration ().getString ("uri" ));
37
37
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" );
39
39
40
40
MongoDatabase database = client .getDatabase ("AtlasSandbox" );
41
41
col = database .getCollection ("HypixelItems" );
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public void connect() {
37
37
if (dbinfo .getConfiguration ().getBoolean ("use" ))
38
38
client = MongoClients .create (dbinfo .getConfiguration ().getString ("uri" ));
39
39
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" );
41
41
42
42
MongoDatabase database = client .getDatabase ("AtlasSandbox" );
43
43
col = database .getCollection ("island_data" );
You can’t perform that action at this time.
0 commit comments