From a1717dc3de04397a3f8a406dad626c25a278bb4b Mon Sep 17 00:00:00 2001 From: "Alexander S. Aganichev" Date: Sat, 6 Jul 2002 07:27:18 +0000 Subject: [PATCH] Reverted back changes -- not a bug --- docs/notework.txt | 3 --- goldlib/gmb3/gmoarea.h | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/notework.txt b/docs/notework.txt index 3ca6f13..683a00a 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -12,9 +12,6 @@ ______________________________________________________________________ Notes for GoldED+ 1.1.5, /snapshot/ ______________________________________________________________________ -- Origin line was not always used for the particular echo if defined - in the AREADEF line. Fixed. - - Fixed header encoding in exported SOUP packets. - Fixed small problem in editor when quoteline might left not painted diff --git a/goldlib/gmb3/gmoarea.h b/goldlib/gmb3/gmoarea.h index 480713e..61a775f 100644 --- a/goldlib/gmb3/gmoarea.h +++ b/goldlib/gmb3/gmoarea.h @@ -108,7 +108,7 @@ public: void set_aka(ftn_addr& a) { cfg.aka = a; } void set_originno(int o) { cfg.originno = o; } void set_attr(Attr& a) { cfg.attr = a; } - void set_origin(char* o) { std::string tmp = o; cfg.originno = cfg.setorigin(tmp); } + void set_origin(char* o) { std::string tmp = o; cfg.setorigin(tmp); } void set_scan(bool s) { cfg.scan = (byte)s; } void set_scanexcl(bool s) { cfg.scanexcl = (byte)s; }