Update to 1.8.4
This commit is contained in:
20
CraftBukkit-Patches/0105-Fix-ban-expire-dates.patch
Normal file
20
CraftBukkit-Patches/0105-Fix-ban-expire-dates.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: md_5 <git@md-5.net>
|
||||
Date: Wed, 16 Apr 2014 10:09:56 +1000
|
||||
Subject: [PATCH] Fix ban expire dates.
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/GameProfileBanEntry.java b/src/main/java/net/minecraft/server/GameProfileBanEntry.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/net/minecraft/server/GameProfileBanEntry.java
|
||||
+++ b/src/main/java/net/minecraft/server/GameProfileBanEntry.java
|
||||
@@ -0,0 +0,0 @@ public class GameProfileBanEntry extends ExpirableListEntry<GameProfile> {
|
||||
}
|
||||
|
||||
public GameProfileBanEntry(GameProfile gameprofile, Date date, String s, Date date1, String s1) {
|
||||
- super(gameprofile, date1, s, date1, s1);
|
||||
+ super(gameprofile, date, s, date1, s1); // Spigot
|
||||
}
|
||||
|
||||
public GameProfileBanEntry(JsonObject jsonobject) {
|
||||
--
|
||||
Reference in New Issue
Block a user