createitem: move all created items to cursor if applicable

develop
lethosor 2016-05-11 17:54:37 -04:00
parent fee6e57b40
commit 74898a5424
2 changed files with 2 additions and 1 deletions

@ -43,6 +43,7 @@ New Features
Fixes
-----
- `createitem`: Now moves multiple created items to cursor correctly
- `exportlegends`: Improved handling of unknown enum items (fixes many errors)
- `gui/create-item`: Fixed quality when creating multiple items
- `gui/mod-manager`: Fixed error when mods folder doesn't exist

@ -128,7 +128,7 @@ bool makeItem (df::reaction_product_itemst *prod, df::unit *unit, bool second_it
}
}
if ((is_gloves || is_shoes) && !second_item)
return makeItem(prod, unit, true);
return makeItem(prod, unit, true, move_to_cursor);
return true;
}