summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/023-3-1/logic.txt2
-rw-r--r--npc/functions/util.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/023-3-1/logic.txt b/npc/023-3-1/logic.txt
index 4dd3d9651..a32caa533 100644
--- a/npc/023-3-1/logic.txt
+++ b/npc/023-3-1/logic.txt
@@ -287,7 +287,7 @@ OnIsbamuthDefeat:
Exception(l("Why do you bully me! - This is a bug: 02331.LOGIC.OID"), RB_DISPBOTTOM|RB_DEBUGMES);
deltimer(.@n$+"::OnW01");
deltimer(.@n$+"::OnW02");
- getexp 0, 1000;
+ //getexp 0, 1000;
@ISBAMUTH=monster(.@m$, 45, 34, l("Isbamuth"), Isbamuth, 1, .name$+"::OnIsbamuthDefeat");
end;
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index afb94fbdf..cc886100a 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -1294,8 +1294,8 @@ function script set_aggro {
function script immortal {
.@u=getarg(0);
- setunitdata(.@u, UDT_HP, 2147483647);
setunitdata(.@u, UDT_MAXHP, 2147483647);
+ setunitdata(.@u, UDT_HP, 2147483647);
return;
}