Skip to content

Commit dddda3f

Browse files
committed
adjust data url name
Took 13 minutes
1 parent e7095ef commit dddda3f

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target/
22
/src/test/
3-
.idea/
3+
/.idea/
4+
/uuids.txt

Skulls.iml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module version="4">
3+
<component name="FacetManager">
4+
<facet type="minecraft" name="Minecraft">
5+
<configuration>
6+
<autoDetectTypes>
7+
<platformType>MCP</platformType>
8+
</autoDetectTypes>
9+
<projectReimportVersion>1</projectReimportVersion>
10+
</configuration>
11+
</facet>
12+
</component>
13+
<component name="McpModuleSettings">
14+
<option name="srgType" value="SRG" />
15+
</component>
16+
</module>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<artifactId>skulls</artifactId>
88

99
<name>Skulls</name>
10-
<version>3.19.1</version>
10+
<version>3.20.0</version>
1111
<packaging>jar</packaging>
1212

1313
<properties>
1414
<author>Kiran Hart</author>
1515
<jarName>Skulls-${project.version}</jarName>
1616
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
1717
<java.version>16</java.version>
18-
<flight.version>3.27.0</flight.version>
18+
<flight.version>3.27.1</flight.version>
1919
<flight.path>ca.tweetzy</flight.path>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
</properties>

src/main/java/ca/tweetzy/skulls/settings/Settings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class Settings extends FlightSettings {
3737
public static final ConfigEntry LANG = create("language", "english").withComment("Default language file");
3838
public static final ConfigEntry PREFIX = create("prefix", "<GRADIENT:DD5E89>&lSkulls</GRADIENT:fbc7d4>&r &8»").withComment("Prefix to be used in chat");
3939
public static final ConfigEntry CHARGE_FOR_HEADS = create("charge for heads", true).withComment("Should skulls charge users without permission for heads?");
40-
public static final ConfigEntry SKULLS_DATA_SOURCE_URL = create("skulls data source url", "https://raw.githubusercontent.com/Tweetzy/Data-Files/main/Skulls/skulls.json").withComment("Skulls data source, might be a mirror");
40+
public static final ConfigEntry SKULLS_DATA_SOURCE_URL = create("data url", "https://raw.githubusercontent.com/Tweetzy/Data-Files/main/Skulls/skulls.json").withComment("Do not touch this if you don't know what you are doing!");
4141
public static final ConfigEntry ECONOMY = create("economy", "Vault").withComment("You can use Vault or Item");
4242
public static final ConfigEntry ITEM_ECONOMY_ITEM = create("item economy item", CompMaterial.GOLD_INGOT.name());
4343
public static final ConfigEntry MAIN_MENU_REQUIRES_NO_PERM = create("main menu requires no permission", true);

0 commit comments

Comments
 (0)