diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/config/magic.txt | 4 | ||||
-rw-r--r-- | npc/items/books.txt | 2 | ||||
-rw-r--r-- | npc/magic/abizit.txt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt index 6516a2609..b5239e9f2 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -87,8 +87,8 @@ function script mescordialog { return; } -// abizit({dialog=1}) -function script abizit { +// ShowAbizit({dialog=1}) +function script ShowAbizit { .@dial=getarg(0, true); if (.@dial) mesn l("Current Magic Control"); diff --git a/npc/items/books.txt b/npc/items/books.txt index b0a18c083..23469db7b 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -235,7 +235,7 @@ OnInit: mesc l("Summon Plants - @sk-plantkingdom"); next; - abizit(); + ShowAbizit(true); next; break; case 3: diff --git a/npc/magic/abizit.txt b/npc/magic/abizit.txt index 311498b87..53ddbe260 100644 --- a/npc/magic/abizit.txt +++ b/npc/magic/abizit.txt @@ -19,7 +19,7 @@ OnCall: end; } - abizit(false); + ShowAbizit(false); // set cooldown @abizit_at=gettimetick(2); |