diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-03-10 13:38:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-03-10 13:38:55 -0300 |
commit | 59bd68d0c1565fc55e1821f5c95f692456c5e03d (patch) | |
tree | cf50db7bc3e311ae4a19f60ca6c5364b0dd23790 /npc/functions | |
parent | 76f4d354b55ef355d2c955915b6815f982f84867 (diff) | |
download | serverdata-59bd68d0c1565fc55e1821f5c95f692456c5e03d.tar.gz serverdata-59bd68d0c1565fc55e1821f5c95f692456c5e03d.tar.bz2 serverdata-59bd68d0c1565fc55e1821f5c95f692456c5e03d.tar.xz serverdata-59bd68d0c1565fc55e1821f5c95f692456c5e03d.zip |
Fix possible oversight? Does this even matter? Well, better safe than sorry.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |