mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-15 03:52:12 +01:00
Generic cleanup
By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
parent
da51cfa4b1
commit
c5408f1030
@ -1,9 +1,11 @@
|
|||||||
package org.bukkit.event.entity;
|
package org.bukkit.event.entity;
|
||||||
|
|
||||||
|
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.event.Cancellable;
|
import org.bukkit.event.Cancellable;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores data for entities standing inside a portal block
|
* Stores data for entities standing inside a portal block
|
||||||
*/
|
*/
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
package org.bukkit.event.player;
|
package org.bukkit.event.player;
|
||||||
|
|
||||||
|
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when a player completes the portaling process by standing in a portal
|
* Called when a player completes the portaling process by standing in a portal
|
||||||
*/
|
*/
|
||||||
@ -16,6 +18,7 @@ public class PlayerPortalEvent extends PlayerTeleportEvent {
|
|||||||
public void useTravelAgent(boolean useTravelAgent) {
|
public void useTravelAgent(boolean useTravelAgent) {
|
||||||
this.useTravelAgent = useTravelAgent;
|
this.useTravelAgent = useTravelAgent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean useTravelAgent() {
|
public boolean useTravelAgent() {
|
||||||
return useTravelAgent;
|
return useTravelAgent;
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
package org.bukkit.event.world;
|
package org.bukkit.event.world;
|
||||||
|
|
||||||
|
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.bukkit.event.Cancellable;
|
import org.bukkit.event.Cancellable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when the world attempts to create a matching end to a portal
|
* Called when the world attempts to create a matching end to a portal
|
||||||
*/
|
*/
|
||||||
|
@ -95,6 +95,7 @@ public class MaterialData {
|
|||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (obj != null && obj instanceof MaterialData) {
|
if (obj != null && obj instanceof MaterialData) {
|
||||||
MaterialData md = (MaterialData) obj;
|
MaterialData md = (MaterialData) obj;
|
||||||
|
|
||||||
return (md.getItemTypeId() == getItemTypeId() && md.getData() == getData());
|
return (md.getItemTypeId() == getItemTypeId() && md.getData() == getData());
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user