diff options
| author | Quietust | 2012-07-11 14:31:47 -0500 |
|---|---|---|
| committer | Quietust | 2012-07-11 14:31:47 -0500 |
| commit | 0f23aba89db2d7d6d276cdc94c2e99cf43b6dcc5 (patch) | |
| tree | 4b582533a66e1329ec00ec2e4978010bb8981216 /plugins/fixpositions.cpp | |
| parent | 8f8f25384c54075c5a72cf50d133f19465eebf9c (diff) | |
| download | dfhack-0f23aba89db2d7d6d276cdc94c2e99cf43b6dcc5.tar.gz dfhack-0f23aba89db2d7d6d276cdc94c2e99cf43b6dcc5.tar.bz2 dfhack-0f23aba89db2d7d6d276cdc94c2e99cf43b6dcc5.tar.xz | |
Sync with df-structures
Diffstat (limited to 'plugins/fixpositions.cpp')
| -rw-r--r-- | plugins/fixpositions.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/fixpositions.cpp b/plugins/fixpositions.cpp index 086848fe..bd8fb279 100644 --- a/plugins/fixpositions.cpp +++ b/plugins/fixpositions.cpp @@ -80,9 +80,9 @@ command_result df_fixdiplomats (color_ostream &out, vector<string> ¶meters) pos->flags.set(entity_position_flags::IS_DIPLOMAT); pos->flags.set(entity_position_flags::IS_LEADER); // not sure what these flags do, but the game sets them for a valid diplomat - pos->flags.set(entity_position_flags::anon_1); - pos->flags.set(entity_position_flags::anon_3); - pos->flags.set(entity_position_flags::anon_4); + pos->flags.set(entity_position_flags::unk_12); + pos->flags.set(entity_position_flags::unk_1a); + pos->flags.set(entity_position_flags::unk_1b); pos->name[0] = "Diplomat"; pos->name[1] = "Diplomats"; pos->precedence = 70; @@ -183,9 +183,9 @@ command_result df_fixmerchants (color_ostream &out, vector<string> ¶meters) pos->flags.set(entity_position_flags::IS_DIPLOMAT); pos->flags.set(entity_position_flags::IS_LEADER); // not sure what these flags do, but the game sets them for a valid guild rep - pos->flags.set(entity_position_flags::anon_1); - pos->flags.set(entity_position_flags::anon_3); - pos->flags.set(entity_position_flags::anon_4); + pos->flags.set(entity_position_flags::unk_12); + pos->flags.set(entity_position_flags::unk_1a); + pos->flags.set(entity_position_flags::unk_1b); pos->name[0] = "Guild Representative"; pos->name[1] = "Guild Representatives"; pos->precedence = 40; |
