diff options
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r-- | npc/functions/soul_menhir.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt index 0bc914987..437e6d1e8 100644 --- a/npc/functions/soul_menhir.txt +++ b/npc/functions/soul_menhir.txt @@ -98,8 +98,12 @@ L_DontPanic: goto L_Return; L_Do_Save: - savepoint @map$, @x, @y; - specialeffect(4, SELF, getcharid(3)); + if (GSET_SOULMENHIR_MANUAL) { + savepoint @map$, @x, @y; + specialeffect(4, SELF, getcharid(3)); + } else { + dispbottom col(l("Your position is auto-saved when entering a town - use @ucp to change this behavior."), 1); + } // As we have a dialog box open, this function produces an undesirable player talk. //savepointparticle @map$, @x, @y, NO_INN; |