From 39b2d95d631fde967d843a4d1db18eebd5bd51ee Mon Sep 17 00:00:00 2001 From: Ceikry Date: Thu, 12 Mar 2020 23:44:27 -0500 Subject: [PATCH] Added a basic handler for the bandits --- .../interaction/city/pollnivneach/BlackJackSeller.java | 4 ++++ .../plugin/interaction/city/pollnivneach/DesertBandit.java | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 Server/src/plugin/interaction/city/pollnivneach/BlackJackSeller.java diff --git a/Server/src/plugin/interaction/city/pollnivneach/BlackJackSeller.java b/Server/src/plugin/interaction/city/pollnivneach/BlackJackSeller.java new file mode 100644 index 000000000..1d2e11c0d --- /dev/null +++ b/Server/src/plugin/interaction/city/pollnivneach/BlackJackSeller.java @@ -0,0 +1,4 @@ +package plugin.interaction.city.pollnivneach; + +public class BlackJackSeller { +} diff --git a/Server/src/plugin/interaction/city/pollnivneach/DesertBandit.java b/Server/src/plugin/interaction/city/pollnivneach/DesertBandit.java index 4e6767ed1..9ade52f8f 100644 --- a/Server/src/plugin/interaction/city/pollnivneach/DesertBandit.java +++ b/Server/src/plugin/interaction/city/pollnivneach/DesertBandit.java @@ -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 newInstance(Object arg) throws Throwable { new BanditDialogue().init();