We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb257d commit 9dc6eb7Copy full SHA for 9dc6eb7
1 file changed
code/asteroid/asteroid.cpp
@@ -2679,7 +2679,10 @@ void asteroid_init()
2679
verify_asteroid_splits();
2680
2681
if (!Asteroid_impact_explosion_ani.isValid()) {
2682
- Error(LOCATION, "Missing valid asteroid impact explosion definition in asteroid.tbl!");
+ // this will always be missing on a standalone
2683
+ if ( !Is_standalone ) {
2684
+ Error(LOCATION, "Missing valid asteroid impact explosion definition in asteroid.tbl!");
2685
+ }
2686
}
2687
2688
if (Asteroid_icon_closeup_model[0] == '\0')
0 commit comments