Skip to content

Commit

Permalink
Credit attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Rektroth committed Jul 11, 2023
1 parent 9676077 commit 2cf0fb5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Whiteout

Whiteout is an attempt to implement the bug fixes offered by the [Paper](https://github.com/PaperMC) project in Fabric.
Whiteout is an attempt to implement the bug fixes offered by the [Paper](https://github.com/PaperMC/Paper) project in Fabric.

## Patches
### Present
Expand Down Expand Up @@ -59,4 +59,4 @@ Whiteout is in no way associated with the Paper project. Please do not contact t

Since all bug fixes provided by this mod are ported from Paper, said fixes inherit their licensing from the Paper project, which is licensed under the [GPLv3](LICESE).

However, some contributors to the Paper project chose to release their code under the more permissive [MIT License](https://github.com/PaperMC/Paper/blob/master/licenses/MIT.md). While I would like to properly annotate which patches were originally authored by which person in the future, for now those wishing to fork or otherwise modify this project will have to cross-reference with the [Paper project's list of permissive contributors](https://github.com/PaperMC/Paper/blob/master/LICENSE.md).
[While some contributors to the Paper project chose to release their code under the more permissive MIT License](https://github.com/PaperMC/Paper/blob/master/LICENSE.md), it is easier, and legally permissible, to release this entire project under the GPLv3. Patches are however still annotated to attribute appropriate credit to their original authors.
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Patch for MC-158900
*
* Authored for CraftBukkit/Spigot by Spottedleaf <[email protected]> on August 13, 2019.
* Ported to Fabric by Rektroth <[email protected]> on July 11, 2023.
*/

package io.github.rektroth.whiteout.mixin.entity;

import net.minecraft.entity.Entity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Patch for MC-4
*
* Authored for CraftBukkit/Spigot by BillyGalbreath <[email protected]> on December 8, 2020.
* Ported to Fabric by Rektroth <[email protected]> on July 11, 2023.
*/

package io.github.rektroth.whiteout.mixin.server;

import net.minecraft.server.BannedPlayerList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Patch for MC-4
*
* Authored for CraftBukkit/Spigot by BillyGalbreath <[email protected]> on December 8, 2020.
* Ported to Fabric by Rektroth <[email protected]> on July 11, 2023.
*/

package io.github.rektroth.whiteout.mixin.server;

import com.mojang.authlib.GameProfile;
Expand Down

0 comments on commit 2cf0fb5

Please sign in to comment.