You know how a good sous chef can still plate the dish when the oven dies mid-service? They've rehearsed degraded conditions — mentally simulated working with one burner, no broiler, the walk-in down. Most RGB-D segmentation models have never rehearsed anything. They train on paired RGB + depth, and when one sensor fails at inference time, they face-plant. Condition Dropout (ConD) is the practice drill. The committed claim: a continued-training paradigm that randomly drops RGB, depth, or neither during a second training stage makes pretrained RGB-D models robust to missing modalities without sacrificing full-modality accuracy. This is not a new architecture. It is a training recipe bolted onto existing models. The mechanism is deliberately simple. You take a pretrained RGB-D segmentation model, freeze its original dual encoders, copy them, and train the copies with zero-initialized feature injection while randomly simulating three conditions — both modalities present, RGB missing, depth missing. The frozen encoders preserve what the model already knows; the copied encoders learn to handle degraded inputs. Zero-initialization means the new pathway starts by contributing nothing and gradually learns to compensate. This is the same principle behind LoRA and adapter tuning: don't break what works, add a parallel pathway that handles the new regime. The ladder here is honest but modest. ConD is tested on NYU-Depth V2 and SUN RGB-D — both standard community benchmarks for indoor scene segmentation. The paper shows robustness gains under missing modalities and slight improvements when both modalities are present. But the abstract provides no specific mIoU numbers, no named SOTA comparison with deltas. We know it helps; we don't know by how much versus the best existing approaches to missing-modality robustness (e.g., tokenized modality masking in CMNeXt, or the missing-aware prompts in recent multi-modal transformers). Integrity is mixed. The benchmarks are real community standards — NYU-Depth V2 and SUN RGB-D are the right datasets for this claim. But the code is only promised upon acceptance, not released at submission. No pre-registration, no independent replication. The validation is same-team simulation on public test sets, which is the norm for this subfield but leaves room for favorable hyperparameter selection across the three dropout conditions. The practical value is clear even if the novelty is incremental. Surveillance systems, autonomous vehicles, and robotics routinely lose depth sensors to occlusion, fog, or hardware failure. Any deployed RGB-D segmentation system needs a missing-modality story. ConD offers a recipe that doesn't require re-architecting the model — you take your existing pretrained model and add a second training stage. That's a low barrier to adoption. The obvious next experiment is outdoor scenes and more than two modalities. NYU-Depth V2 and SUN RGB-D are indoor datasets. Autonomous driving (Cityscapes with depth, KITTI) and multi-sensor robotics (RGB + depth + thermal + LiDAR) are where missing-modality robustness actually matters at scale. The authors likely stayed indoors because the pretrained models and benchmarks are more established there — this reads as saving the harder, noisier, higher-stakes experiments for a follow-up paper.