Skip to content
This repository was archived by the owner on Dec 24, 2021. It is now read-only.
/ Custom-Paper Public archive
forked from PaperMC/Paper

This is my custom Paper fork, High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies

License

Notifications You must be signed in to change notification settings

SB2DD/Custom-Paper

 
 

Repository files navigation

This fork is outdated and not supported anymore. It has been replaced by https://github.com/Mrredstone5230/custom-paper-patches. ⚠️THIS ARCHIVE IS STILL VULNERABLE FROM LOG4SHELL, SO DO NOT USE IT!!!⚠️

My custom Paper Fork GitHub Workflow Status (branch)

High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies.

Support and Project Discussion:

Custom Features

  • Faster turtle egg hatch time
  • Maxed book level for villagers
  • Cheapest books for villagers
  • Faster water/snow cauldrons, but mainly snow
  • Instant-minable deepslate (No sound for the client though :)
  • Better trident spawn rate
  • Instant-minable basalt (No sound for the client though :)
  • Faster Goat Attacks
  • More slime spawns

How To (Server Admins)

Download Paper here or from the Jenkins page.

How To (Plugin Developers) (Same as normal paper)

  • See our API patches here
  • See upcoming, pending, and recently added API here
  • Paper API javadocs here: papermc.io/javadocs
  • Maven Repo (for paper-api):
<repository>
    <id>papermc</id>
    <url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
  • Artifact Information:
<dependency>
    <groupId>io.papermc.paper</groupId>
    <artifactId>paper-api</artifactId>
    <version>1.17.1-R0.1-SNAPSHOT</version>
    <scope>provided</scope>
</dependency>

Or alternatively, with Gradle:

  • Repository:
repositories {
    maven {
        url = uri("https://papermc.io/repo/repository/maven-public/")
    }
}

dependencies {
    compileOnly("io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT")
}

java {
    toolchain.languageVersion.set(JavaLanguageVersion.of(16))
}

How To (Compiling Jar From Source)

To compile Paper, you need JDK 16 and an internet connection.

Clone this repo, run ./gradlew applyPatches, then ./gradlew reobfJar from your terminal. You can find the compiled jar in the Paper-Server/build/libs directory.

To get a full list of tasks, run ./gradlew tasks.

How To (Pull Request)

See Contributing

Support Us (Original Paper)

First of all, thank you for considering helping out, we really appreciate that!

PaperMC has various recurring expenses, mostly related to infrastructure. Paper uses Open Collective via the Open Source Collective fiscal host to manage expenses. Open Collective allows us to be extremely transparent, so you can always see how your donations are used. You can read more about finanically supporting PaperMC on our website.

You can find our collective here, or you can donate via GitHub Sponsors here, which will also go towards the collective.

Special Thanks To:

YourKit-Logo

YourKit, makers of the outstanding java profiler, support open source projects of all kinds with their full featured Java and .NET application profilers. We thank them for granting Paper an OSS license so that we can make our software the best it can be.

JetBrains, creators of the IntelliJ IDEA, supports Paper with one of their Open Source Licenses. IntelliJ IDEA is the recommended IDE for working with Paper, and most of the Paper team uses it.

All our sponsors!
Sponsor Image

About

This is my custom Paper fork, High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies

Resources

License

Contributing

Stars

Watchers

Forks

Contributors

Languages

  • Java 53.5%
  • Shell 24.2%
  • Kotlin 22.3%