Updates this structure as though a worker has just built it.
(&mut self, build_health: u32)
| 930 | |
| 931 | /// Updates this structure as though a worker has just built it. |
| 932 | pub(crate) fn be_built(&mut self, build_health: u32) { |
| 933 | if self.be_healed(build_health) { |
| 934 | self.is_built = true; |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | /// Ok if the structure has been built. |
| 939 | /// |