Skip to content

Commit fd0fe7e

Browse files
committed
Fixed bungeecord lag, Now works with bungee handled chat as well
1 parent acf43a8 commit fd0fe7e

16 files changed

+702
-142
lines changed

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>InteractiveChat</groupId>
66
<artifactId>InteractiveChat</artifactId>
7-
<version>3.0.1</version>
7+
<version>3.1.0</version>
88
<build>
99
<sourceDirectory>src</sourceDirectory>
1010
<resources>
@@ -136,6 +136,13 @@
136136
<version>1.0</version>
137137
<systemPath>${basedir}/lib/spigot-1.16.1.jar</systemPath>
138138
</dependency>
139+
<dependency>
140+
<groupId>bungeecord-proxy-1.16-R0.4-SNAPSHOT</groupId>
141+
<artifactId>bungeecord-proxy-1.16-R0.4-SNAPSHOT</artifactId>
142+
<scope>system</scope>
143+
<version>1.0</version>
144+
<systemPath>${basedir}/lib/bungeecord-proxy-1.16-R0.4-SNAPSHOT.jar</systemPath>
145+
</dependency>
139146
<dependency>
140147
<groupId>net.milkbowl.vault</groupId>
141148
<artifactId>VaultAPI</artifactId>

src/bungeeconfig.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Settings:
2+
#A list of private message commands on your server
3+
#The plugin will attempt to parse placeholder inside these commands.
4+
#This list is in REGEX so you can do some more advanced matches.
5+
CommandsToParse:
6+
- "(?i)/emsg.*"
7+
- "(?i)/msg.*"
8+
- "(?i)/pm.*"
9+
- "(?i)/tell.*"
10+
- "(?i)/r.*"

0 commit comments

Comments
 (0)