mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-24 03:25:24 +01:00
Throw IllegalArgumentException if trackParentCause() is given a Block.
This commit is contained in:
parent
095f2aa67e
commit
3eb5c65a3d
@ -180,10 +180,20 @@ public static Cause unknown() {
|
|||||||
/**
|
/**
|
||||||
* Add a parent cause to a {@code Metadatable} object.
|
* Add a parent cause to a {@code Metadatable} object.
|
||||||
*
|
*
|
||||||
|
* <p>Note that {@code target} cannot be an instance of
|
||||||
|
* {@link Block} because {@link #create(Object...)} will not bother
|
||||||
|
* checking for such data on blocks (because it is relatively costly
|
||||||
|
* to do so).</p>
|
||||||
|
*
|
||||||
* @param target the target
|
* @param target the target
|
||||||
* @param parent the parent cause
|
* @param parent the parent cause
|
||||||
|
* @throws IllegalArgumentException thrown if {@code target} is an instance of {@link Block}
|
||||||
*/
|
*/
|
||||||
public static void trackParentCause(Metadatable target, Object parent) {
|
public static void trackParentCause(Metadatable target, Object parent) {
|
||||||
|
if (target instanceof Block) {
|
||||||
|
throw new IllegalArgumentException("Can't track causes on Blocks because Cause doesn't check block metadata");
|
||||||
|
}
|
||||||
|
|
||||||
WGMetadata.put(target, CAUSE_KEY, parent);
|
WGMetadata.put(target, CAUSE_KEY, parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user