diff options
| author | Robert Heinrich | 2012-04-17 18:11:14 +0200 |
|---|---|---|
| committer | Robert Heinrich | 2012-04-17 18:11:14 +0200 |
| commit | 299510f0d9f87c09a505a31aea4b94d11237597d (patch) | |
| tree | 8d5e729ab6ec41563179ed5a0003180fb63c9886 /plugins/probe.cpp | |
| parent | 40f36c19128f2daa7e40c5a1d882ffd1f5b5f47f (diff) | |
| download | dfhack-299510f0d9f87c09a505a31aea4b94d11237597d.tar.gz dfhack-299510f0d9f87c09a505a31aea4b94d11237597d.tar.bz2 dfhack-299510f0d9f87c09a505a31aea4b94d11237597d.tar.xz | |
zone: don't assign to cages which are designated but not yet placed (minor fix, it's not like bad things happen without it)
Diffstat (limited to 'plugins/probe.cpp')
| -rw-r--r-- | plugins/probe.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/probe.cpp b/plugins/probe.cpp index 4eff1d49..4e041f18 100644 --- a/plugins/probe.cpp +++ b/plugins/probe.cpp @@ -386,6 +386,8 @@ command_result df_bprobe (color_ostream &out, vector <string> & parameters) out << ", is room"; else out << ", not a room"; + if(building.origin->getBuildStage()!=building.origin->getMaxBuildStage()) + out << ", in construction"; out.print("\n"); |
