Skip to content

Commit

Permalink
Sync with df-structures
Browse files Browse the repository at this point in the history
  • Loading branch information
quietust committed Jul 11, 2012
1 parent 8f8f253 commit 0f23aba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/fixpositions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ command_result df_fixdiplomats (color_ostream &out, vector<string> &parameters)
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;
Expand Down Expand Up @@ -183,9 +183,9 @@ command_result df_fixmerchants (color_ostream &out, vector<string> &parameters)
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;
Expand Down

0 comments on commit 0f23aba

Please sign in to comment.