Fixed facial expression in Onglewip dialogue

Removed Seth from the game
Fixed lamp text
Added missing cow spawns
This commit is contained in:
szumaster
2023-05-07 03:04:01 +00:00
committed by Ryan
parent ce7f249880
commit d0ae674155
3 changed files with 4 additions and 4 deletions
@@ -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;
}