remove stray whitespace

develop
Kelly Kinkade 2022-11-20 12:05:14 -06:00
parent 9fcb20888f
commit 8d95d20852
1 changed files with 4 additions and 4 deletions

@ -371,12 +371,12 @@ DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_chan
DFhackCExport command_result plugin_onupdate ( color_ostream &out )
{
static int step_count = 0;
if(!world || !world->map.block_index || !enable_autohauler)
{
return CR_OK;
if(!world || !world->map.block_index || !enable_autohauler)
{
return CR_OK;
}
if (++step_count < frame_skip)
if (++step_count < frame_skip)
return CR_OK;
step_count = 0;