MCRedirectModifier
Link to mcredirectmodifier
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.commands.custom.MCRedirectModifier;
Constructors
Link to constructors
No Description Provided
ZenScript Copynew MCRedirectModifier(fun as Function<MCCommandContext,Collection<MCCommandSource>>) as MCRedirectModifier
Parameter | Type | Description |
---|---|---|
Parameter fun | Type Function<MCCommandContext,Collection<MCCommandSource>> | Description No Description Provided |
Casters
Link to casters
Result type | Is Implicit |
---|---|
Result type string | Is Implicit true |
Methods
Link to methods
Name: apply
Return Type: Collection<MCCommandSource>
ZenScript CopyMCRedirectModifier.apply(context as MCCommandContext) as Collection<MCCommandSource>
Parameter | Type | Description |
---|---|---|
Parameter context | Type MCCommandContext | Description No Description Provided |
Name: equals
Return Type: boolean
ZenScript CopyMCRedirectModifier.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Name: hashCode
Return Type: int
ZenScript Copy// MCRedirectModifier.hashCode() as int
myMCRedirectModifier.hashCode();
Name: toString
Return Type: string
ZenScript Copy// MCRedirectModifier.toString() as string
myMCRedirectModifier.toString();
Operators
Link to operators
Name: EQUALS
ZenScript CopymyMCRedirectModifier == o as Object