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

Commit f7beb84

Browse files
authored
Merge pull request #3 from Timongcraft/dev
Dev
2 parents a7a496d + 54ad854 commit f7beb84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2217
-1663
lines changed

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 216 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
- Sound/Highlight your player name in chat
2222
- A permission system
2323
- A maintenance system
24-
- A auto save system
24+
- A hopper sorting system
25+
- A coordinate save system
2526
- A team chat
2627
- A resource pack system
2728
- A alert/broadcast command
28-
- A speed, walkspeed and flyspeed command
29+
- A walkspeed and flyspeed command
2930
- A reboot command that reboots server after a specified amount of minutes with a reason
30-
- A plugin command to disable plugins
3131
- Time in chat messages with formatting
3232
- A configs reload command for the plugin
3333
- Block commands & prefixes
@@ -249,9 +249,6 @@ blockedCommands:
249249
- 'icanhasbukkit'
250250
- 'pl'
251251
- 'plugins'
252-
- 'me'
253-
- 'tm'
254-
- 'teammsg'
255252
- 'ver'
256253
- 'version'
257254
@@ -260,7 +257,7 @@ blockedCommands:
260257
blockedPrefix:
261258
- 'bukkit:'
262259
- 'minecraft:'
263-
- 'sbs-system:'
260+
- 'tgc-system:'
264261
````
265262
</details>
266263

pom.xml

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>timongcraft</groupId>
88
<artifactId>Tgc-System</artifactId>
9-
<version>1.42</version>
9+
<version>1.43</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Tgc-System</name>
@@ -28,22 +28,6 @@
2828
<target>${java.version}</target>
2929
</configuration>
3030
</plugin>
31-
<plugin>
32-
<groupId>org.apache.maven.plugins</groupId>
33-
<artifactId>maven-shade-plugin</artifactId>
34-
<version>3.2.4</version>
35-
<executions>
36-
<execution>
37-
<phase>package</phase>
38-
<goals>
39-
<goal>shade</goal>
40-
</goals>
41-
<configuration>
42-
<createDependencyReducedPom>false</createDependencyReducedPom>
43-
</configuration>
44-
</execution>
45-
</executions>
46-
</plugin>
4731
</plugins>
4832
<resources>
4933
<resource>
@@ -62,19 +46,31 @@
6246
<id>sonatype</id>
6347
<url>https://oss.sonatype.org/content/groups/public/</url>
6448
</repository>
49+
<repository>
50+
<id>minecraft-libraries</id>
51+
<name>Minecraft Libraries</name>
52+
<url>https://libraries.minecraft.net</url>
53+
</repository>
6554
</repositories>
6655

6756
<dependencies>
6857
<dependency>
6958
<groupId>org.spigotmc</groupId>
7059
<artifactId>spigot-api</artifactId>
71-
<version>1.19.4-R0.1-SNAPSHOT</version>
60+
<version>1.19-R0.1-SNAPSHOT</version>
7261
<scope>provided</scope>
7362
</dependency>
7463
<dependency>
7564
<groupId>dev.jorel</groupId>
76-
<artifactId>commandapi-bukkit-shade</artifactId>
77-
<version>9.0.1</version>
65+
<artifactId>commandapi-bukkit-core</artifactId>
66+
<version>9.3.0</version>
67+
<scope>provided</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.mojang</groupId>
71+
<artifactId>brigadier</artifactId>
72+
<version>1.0.18</version>
73+
<scope>provided</scope>
7874
</dependency>
7975
</dependencies>
8076
</project>

src/main/java/timongcraft/commands/AlertCommand.java

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/main/java/timongcraft/commands/ColorCodesCommand.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/main/java/timongcraft/commands/FlySpeedCommand.java

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)