DamageSourcePredicate
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.predicate.DamageSourcePredicate;
Members
static create() as Builder
matches(player as ServerPlayer, source as DamageSource) as bool
myDamageSourcePredicate.matches(myServerPlayer, myDamageSource);
Parameters:
player: ServerPlayer
Type: ServerPlayer
source: DamageSource
Type: DamageSource
Return Type:
bool
matches(level as ServerLevel, pos as Vec3, source as DamageSource) as bool
// DamageSourcePredicate.matches(level as ServerLevel, pos as Vec3, source as DamageSource) as bool;myDamageSourcePredicate.matches(myServerLevel, myVec3, myDamageSource);
Parameters:
Return Type:
bool