UFO:Alien Invasion
Archive => Bugs prior to release 2.4 => Topic started by: ptbptb on September 20, 2011, 03:46:40 pm
-
Disassembling an intact Harvester will produce 1600 Alien Materials. The product screen statistics state that 800 should be produced.
-
Bug Ticket (https://sourceforge.net/tracker/?func=detail&aid=3411869&group_id=157793&atid=805242)
-
Disassembling an intact Harvester will produce 1600 Alien Materials. The product screen statistics state that 800 should be produced.
Please attach a savegame.
-geever
-
One hour till production finished at AtS. Zero Alien Materials before, 1600 after.
-
attached it to the ticket, too
-
Approximate solution:
CAP_AddCurrent(base, CAP_ITEMS, PR_DisassembleItem(base, ufo->comp, ufo->condition, qfalse)); causes PR_DisassembleItem to be called twice in the inline function 'max'
This is where the inventory is added X 2
Calling PR_DisassembleItem seperately & saving size return value before calling CAP_AddCurrent(base, CAP_ITEMS, sizeret ) makes the invventory correct.
However the base stock level still adds 2 X the inventory.
Total stock is updated as PR_DisassembleItem adds each individual item to the seperate stock items so changing to
CAP_AddCurrent(base, CAP_ITEMS, 0 ) gives correct values.
This line should then do nothing (increases stock level by 0) so should be possible to delete.
Regards
Andy
-
this patch should fix it - or at least the part where PR_DisassembleItem is called twice (other locations were broken, too)
-
this patch should fix it - or at least the part where PR_DisassembleItem is called twice (other locations were broken, too)
Your patch misses Doxygen documentations at first...
-geever