Skip to content

Commit a83edd4

Browse files
author
Robert Brunson
committed
fix building
1 parent 6407788 commit a83edd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/src/main/java/moe/quill/pinion/core/config/ConfigManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import org.bukkit.plugin.Plugin
1010
import java.nio.file.Path
1111

1212
open class ConfigManager<T : Any>(
13-
val plugin: Plugin,
13+
open val plugin: Plugin,
1414
val default: () -> T,
1515
vararg pathExtension: String,
1616
) : Listener {

packets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>com.comphenix.protocol</groupId>
4141
<artifactId>ProtocolLib</artifactId>
42-
<version>${protocollib.version}</version>
42+
<version>5.1.0</version>
4343
<scope>provided</scope>
4444
</dependency>
4545
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<maven.compiler.target>${java.version}</maven.compiler.target>
1010
<kotlin.version>1.6.10</kotlin.version>
1111
<paper.version>1.18.1-R0.1-SNAPSHOT</paper.version>
12-
<protocollib.version>4.8.0-SNAPSHOT</protocollib.version>
12+
<protocollib.version>5.1.0</protocollib.version>
1313

1414
<!--Versions-->
1515
<pinion.parent.version>0.0.1</pinion.parent.version>

spawners/src/main/java/moe/quill/pinion/spawners/config/SpawnerManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import org.bukkit.potion.PotionType
3030
import java.util.*
3131
import kotlin.reflect.full.isSubclassOf
3232

33-
class SpawnerManager(private val plugin: Plugin) :
33+
class SpawnerManager(override val plugin: Plugin) :
3434
ConfigManager<MutableList<Spawner>>(plugin, { mutableListOf() }, "spawners.yml"), CommandArgTranslator<Spawner>,
3535
Listener {
3636

0 commit comments

Comments
 (0)