MCRedirectModifier

Importing the class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

script.zs
import crafttweaker.api.commands.custom.MCRedirectModifier;

Constructors

No Description Provided

script.zs
new MCRedirectModifier(fun as Function<MCCommandContext,Collection<MCCommandSource>>) as MCRedirectModifier
ParameterTypeDescription
Parameter
fun
Type
Function<MCCommandContext,Collection<MCCommandSource>>
Description
No Description Provided

Casters

Result typeIs Implicit
Result type
string
Is Implicit
true

Methods

Return Type: Collection<MCCommandSource>

script.zs
MCRedirectModifier.apply(context as MCCommandContext) as Collection<MCCommandSource>
ParameterTypeDescription
Parameter
context
Type
MCCommandContext
Description
No Description Provided

Return Type: boolean

script.zs
MCRedirectModifier.equals(o as Object) as boolean
ParameterTypeDescription
Parameter
o
Type
Object
Description
No Description Provided

Return Type: int

script.zs
// MCRedirectModifier.hashCode() as int
myMCRedirectModifier.hashCode();

Return Type: string

script.zs
// MCRedirectModifier.toString() as string
myMCRedirectModifier.toString();

Operators

script.zs
myMCRedirectModifier == o as Object