Commits

md_5 authored b655c57d3c1
Drop old collision API deprecated since 1.9.4
No tags

Bukkit-Patches/0007-Add-respawn-API.patch

Renamed
1 -From d8951e12ae42e4b859c7f8d47d6feb408b361aae Mon Sep 17 00:00:00 2001
1 +From 8533b72f9b6007d9a9dc0ebec804debf3d8e146a Mon Sep 17 00:00:00 2001
2 2 From: ninja- <xninja@openmailbox.org>
3 3 Date: Tue, 8 Oct 2013 14:35:58 +0200
4 4 Subject: [PATCH] Add respawn API.
5 5
6 6
7 7 diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
8 -index b7c46512..bd9cc200 100644
8 +index 6ad868b2..0aa162cf 100644
9 9 --- a/src/main/java/org/bukkit/entity/Player.java
10 10 +++ b/src/main/java/org/bukkit/entity/Player.java
11 -@@ -1805,6 +1805,13 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
12 - public void setCollidesWithEntities(boolean collides) {
11 +@@ -1782,6 +1782,13 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
12 + public InetSocketAddress getRawAddress() {
13 13 throw new UnsupportedOperationException("Not supported yet.");
14 14 }
15 15 +
16 16 + /**
17 17 + * Respawns the player if dead.
18 18 + */
19 19 + public void respawn() {
20 20 + throw new UnsupportedOperationException("Not supported yet.");
21 21 + }
22 22 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut