Fixed facial expression in Onglewip dialogue
Removed Seth from the game Fixed lamp text Added missing cow spawns
This commit is contained in:
@@ -43,7 +43,7 @@ public final class LampPlugin extends OptionHandler {
|
||||
public void handleSelectionCallback(int skill, Player player){
|
||||
Lamps lamp = Lamps.forItem(player.getAttribute("lamp",new Item(2528)));
|
||||
if(player.getSkills().getStaticLevel(skill) < lamp.getLevelRequirement()){
|
||||
player.sendMessage("Your need at least" + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this.");
|
||||
player.sendMessage("You need at least " + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this.");
|
||||
return;
|
||||
} else {
|
||||
if(player.getInventory().remove((Item) player.getAttribute("lamp"))) {
|
||||
|
||||
@@ -39,7 +39,7 @@ public final class DrOnglewipDialogue extends DialoguePlugin {
|
||||
@Override
|
||||
public boolean open(Object... args) {
|
||||
npc = (NPC) args[0];
|
||||
interpreter.sendDialogues(player, FacialExpression.NEUTRAL, "Do you live here too?");
|
||||
interpreter.sendDialogues(player, FacialExpression.ASKING, "Do you live here too?");
|
||||
stage = 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user