mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-10 17:42:16 +01:00
Add method to get the source of a TNTPrimed. Adds BUKKIT-3815
By: AlphaBlend <whizkid3000@hotmail.com>
This commit is contained in:
parent
7d58945ede
commit
f60d880814
@ -1,8 +1,10 @@
|
||||
package org.bukkit.craftbukkit.entity;
|
||||
|
||||
import net.minecraft.server.EntityLiving;
|
||||
import net.minecraft.server.EntityTNTPrimed;
|
||||
|
||||
import org.bukkit.craftbukkit.CraftServer;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.EntityType;
|
||||
import org.bukkit.entity.TNTPrimed;
|
||||
|
||||
@ -50,4 +52,17 @@ public class CraftTNTPrimed extends CraftEntity implements TNTPrimed {
|
||||
return EntityType.PRIMED_TNT;
|
||||
}
|
||||
|
||||
public Entity getSource() {
|
||||
EntityLiving source = getHandle().getSource();
|
||||
|
||||
if (source != null) {
|
||||
Entity bukkitEntity = source.getBukkitEntity();
|
||||
|
||||
if (bukkitEntity.isValid()) {
|
||||
return bukkitEntity;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user