Skip to content

Commit 1059e2c

Browse files
authored
Merge pull request #32 from FancyInnovations/feat/sprite
Add support for sprite tag
2 parents a42a270 + 6839d95 commit 1059e2c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### IntelliJ IDEA ###
2+
.idea
23
out/
4+
build/
35
!**/src/main/**/out/
46
!**/src/test/**/out/
57

@@ -30,3 +32,6 @@ bin/
3032

3133
/test/paper/run/
3234
/test/spigot/run/
35+
36+
### gradle ###
37+
.gradle

src/main/java/org/lushplugins/chatcolorhandler/parsers/custom/MiniMessageColorParser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ private static List<TagResolver> tagResolvers() {
5353
resolvers.add(StandardTags.pride());
5454
resolvers.add(StandardTags.shadowColor());
5555
resolvers.add(StandardTags.sequentialHead());
56+
resolvers.add(StandardTags.sprite());
5657
} catch (NoSuchMethodError ignored) {}
5758

5859
return resolvers;

0 commit comments

Comments
 (0)