readd dropped event in InteractWithDoor
This commit is contained in:
@@ -105,13 +105,13 @@ public final class PaperInventoryCustomHolderContainer implements Container {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onOpen(CraftHumanEntity who) {
|
||||
this.delegate.onOpen(who);
|
||||
public void onOpen(CraftHumanEntity player) {
|
||||
this.delegate.onOpen(player);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose(CraftHumanEntity who) {
|
||||
this.delegate.onClose(who);
|
||||
public void onClose(CraftHumanEntity player) {
|
||||
this.delegate.onClose(player);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -194,13 +194,13 @@ public class CraftInventoryCustom extends CraftInventory {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onOpen(CraftHumanEntity who) {
|
||||
this.viewers.add(who);
|
||||
public void onOpen(CraftHumanEntity player) {
|
||||
this.viewers.add(player);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose(CraftHumanEntity who) {
|
||||
this.viewers.remove(who);
|
||||
public void onClose(CraftHumanEntity player) {
|
||||
this.viewers.remove(player);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user