forked from 2009Scape/Server
Added a basic handler for the bandits
This commit is contained in:
parent
051d292154
commit
39b2d95d63
2 changed files with 11 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
package plugin.interaction.city.pollnivneach;
|
||||
|
||||
public class BlackJackSeller {
|
||||
}
|
||||
|
|
@ -6,8 +6,15 @@ import org.crandor.game.interaction.OptionHandler;
|
|||
import org.crandor.game.node.Node;
|
||||
import org.crandor.game.node.entity.npc.NPC;
|
||||
import org.crandor.game.node.entity.player.Player;
|
||||
import org.crandor.plugin.InitializablePlugin;
|
||||
import org.crandor.plugin.Plugin;
|
||||
|
||||
/**
|
||||
* Stand-in for bandit dialogue until blackjacking is implemented
|
||||
* @author ceik
|
||||
*/
|
||||
|
||||
@InitializablePlugin
|
||||
public class DesertBandit extends OptionHandler {
|
||||
public Plugin<Object> newInstance(Object arg) throws Throwable {
|
||||
new BanditDialogue().init();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue