Skip to content

Commit

Permalink
🔖 update to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
b8daniel committed Jul 14, 2022
1 parent 727dc2d commit d553c79
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
\"tag_name\": \"$next_tag_name\",
\"target_commitish\": \"${{ github.sha }}\",
\"generate_release_notes\": true,
\"name\": \"Plugin 1.16\",
\"name\": \"Plugin 1.19\",
\"draft\": true }" \
)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<properties>
<java.version>16</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.version>1.6.20-RC</kotlin.version>
<kotlin.version>1.7.10</kotlin.version>
</properties>
<url>crightgames.net</url>

Expand Down Expand Up @@ -114,7 +114,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<version>1.19-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import de.crightgames.blxckoxymoron.paintball.projectile.ProjectileHitEntityEven
import de.crightgames.blxckoxymoron.paintball.projectile.ProjectileHitEvent
import de.crightgames.blxckoxymoron.paintball.projectile.ProjectileRemoveEvent

open class ProjectileEffect {
abstract class ProjectileEffect {

open fun onBlockHit(e: ProjectileHitBlockEvent): Boolean {
return false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
package de.crightgames.blxckoxymoron.paintball.util

import org.bukkit.World
import org.bukkit.generator.ChunkGenerator
import java.util.*

class EmptyWorldGen : ChunkGenerator() {
override fun generateChunkData(world: World, random: Random, x: Int, z: Int, biome: BiomeGrid): ChunkData {
return createChunkData(world)
}

}
class EmptyWorldGen : ChunkGenerator()
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Paintball
version: '${project.version}'
main: de.crightgames.blxckoxymoron.paintball.Paintball
api-version: 1.16
api-version: 1.19
prefix: Paintball
authors: [ blxckOxymoron ]
website: crightgames.net
Expand Down

0 comments on commit d553c79

Please sign in to comment.