mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-20 13:30:27 -07:00
Renamed Misgog to Mizgog in WizardTowerPlugin.java
This commit is contained in:
parent
3c839937eb
commit
e3ca2b09af
1 changed files with 8 additions and 8 deletions
|
|
@ -69,7 +69,7 @@ public final class WizardTowerPlugin extends OptionHandler {
|
||||||
SceneryDefinition.forId(11993).getHandlers().put("option:open", this);
|
SceneryDefinition.forId(11993).getHandlers().put("option:open", this);
|
||||||
PluginManager.definePlugin(new WizardtowerWizardNPC());
|
PluginManager.definePlugin(new WizardtowerWizardNPC());
|
||||||
PluginManager.definePlugin(new WizardTowerDialogue());
|
PluginManager.definePlugin(new WizardTowerDialogue());
|
||||||
PluginManager.definePlugin(new WizardMisgogDialogue());
|
PluginManager.definePlugin(new WizardMizgogDialogue());
|
||||||
PluginManager.definePlugin(new WizardGrayzagDialogue());
|
PluginManager.definePlugin(new WizardGrayzagDialogue());
|
||||||
PluginManager.definePlugin(new WizardDialogue());
|
PluginManager.definePlugin(new WizardDialogue());
|
||||||
PluginManager.definePlugin(new SedridorDialogue());
|
PluginManager.definePlugin(new SedridorDialogue());
|
||||||
|
|
@ -259,12 +259,12 @@ public final class WizardTowerPlugin extends OptionHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the WizardMisgogDialogue dialogue.
|
* Handles the WizardMizgogDialogue dialogue.
|
||||||
*
|
*
|
||||||
* @author 'Vexia
|
* @author 'Vexia
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
public static final class WizardMisgogDialogue extends DialoguePlugin {
|
public static final class WizardMizgogDialogue extends DialoguePlugin {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the black bead item.
|
* Represents the black bead item.
|
||||||
|
|
@ -292,26 +292,26 @@ public final class WizardTowerPlugin extends OptionHandler {
|
||||||
private static final Animation ANIMATION = new Animation(4285);
|
private static final Animation ANIMATION = new Animation(4285);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code WizardMisgogDialogue} {@code Object}.
|
* Constructs a new {@code WizardMizgogDialogue} {@code Object}.
|
||||||
*/
|
*/
|
||||||
public WizardMisgogDialogue() {
|
public WizardMizgogDialogue() {
|
||||||
/**
|
/**
|
||||||
* empty.
|
* empty.
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new {@code WizardMisgogDialogue} {@code Object}.
|
* Constructs a new {@code WizardMizgogDialogue} {@code Object}.
|
||||||
*
|
*
|
||||||
* @param player the player.
|
* @param player the player.
|
||||||
*/
|
*/
|
||||||
public WizardMisgogDialogue(Player player) {
|
public WizardMizgogDialogue(Player player) {
|
||||||
super(player);
|
super(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DialoguePlugin newInstance(Player player) {
|
public DialoguePlugin newInstance(Player player) {
|
||||||
return new WizardMisgogDialogue(player);
|
return new WizardMizgogDialogue(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue