Go to file
Christian Koop 5f43578869
Fix NoSuchFieldError on Paper-Spigot 1.19.2 for SWorld#getLivingEntities
The field does not exist on Spigot (located in another class?).
But `#getEntities()` does exactly what we need and Paper-Spigot still has it.


SD-9374
SD-9377
SD-9392
SD-9401
2022-10-26 21:58:34 +02:00
.github Reverts 'GitHub-Actions: Force Spigot 1.19.2 recompilation' 2022-09-04 19:43:28 +02:00
Compatibility Release v2.6.16 2022-09-04 19:31:58 +02:00
Core Fix NoSuchFieldError on Paper-Spigot 1.19.2 for SWorld#getLivingEntities 2022-10-26 21:58:34 +02:00
NMS Fix NoSuchFieldError on Paper-Spigot 1.19.2 for SWorld#getLivingEntities 2022-10-26 21:58:34 +02:00
.editorconfig Update EditorConfig [DEV-2] 2021-10-30 14:10:22 +02:00
.gitignore Add dependencies for unit tests 2021-10-30 14:53:23 +02:00
LICENSE Update pom.xml files and project structure 2021-07-08 15:37:37 +02:00
pom.xml Release v2.6.16 2022-09-04 19:31:58 +02:00
README.md Dependabot, FUNDING, README 2021-07-08 15:37:37 +02:00

SongodaCore

An elaborate multi functional general Spigot plugin compatibility core and general use API.

Discord Patreon
Build Latest version Quality Gate Status GitHub last commit

Maven

Repository

<repository>
    <id>songoda-public</id>
    <url>https://repo.songoda.com/repository/public/</url>
</repository>

Artifact

<dependency>
  <groupId>com.songoda</groupId>
  <artifactId>SongodaCore</artifactId>
  <version>VERSION</version>
</dependency>

Gradle

Repository

repositories {
    maven {
        url 'https://repo.songoda.com/repository/public/'
    }
}

Artifact

dependencies {
    compileOnly 'com.songoda:SongodaCore:VERSION'
}