diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
commit | a00579f57be4f02cd2a60ecd9468277ba6631e78 (patch) | |
tree | bc1117ddede14e61b030bfe7a337d323ddea75c2 /world/map/conf/magic-base.sex | |
parent | c0ba38cd4b68491e28e467889804ebc09c9c002e (diff) | |
download | serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.gz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.bz2 serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.xz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.zip |
Fix style (split for more readable diff)
Diffstat (limited to 'world/map/conf/magic-base.sex')
-rw-r--r-- | world/map/conf/magic-base.sex | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/world/map/conf/magic-base.sex b/world/map/conf/magic-base.sex index 64b69a58..8f3b9978 100644 --- a/world/map/conf/magic-base.sex +++ b/world/map/conf/magic-base.sex @@ -3068,17 +3068,18 @@ mes @caster_name$ + \" wishes to marry you.\"; mes \"Do you accept?\"; next; - menu \"Yes, I do!\", L_yes, - \"No.\", L_Close; + menu + \"Yes, I do!\", L_yes, + \"No.\", L_Close; - L_yes: - if marriage(@caster_name$) - announce @caster_name$ + \" and \" + strcharinfo(0) + \" are now married!\", 0; - goto L_Close; + L_yes: + if (marriage(@caster_name$)) + announce @caster_name$ + \" and \" + strcharinfo(0) + \" are now married!\", 0; + goto L_Close; L_Close: close; - }") + }") (IF (not (is_married caster)) (message caster |