From: Martin B. <dr....@t-...> - 2014-08-02 17:12:15
|
Am 02.08.2014 09:42, schrieb Schnell, Volker: > hello, > > here is an other error in rails. > Version 1.8.9. > I sold 3 shares of the JGG and the shareprice moves only one row down > instead of three (JGG price goes from $95(E4) to $90(E5)) > see attached game-file > Rules: > • In a Share Round > - If shares are sold, the share price falls for each 10% share sold, > moving one space downwards. If > the share price marker is in the bottom space of a column, the share > price is not changed. > > Greetings > > Volker Hi Volker, i can confirm this bug. It results from the part that rails generates Actions based the situation at RoundStart. So the possible ShareSellingActions dont take into account yet, that the prices of a share changes during the action. Quick fix: Limit the Shares sellable per action to 1. So Multiple Shares are sold as single action. Complete Fix: Long and tedious and not really on the agenda for 1.x anymore. We have to adjust the SellShares Action which would break most if not all games. To sell multiple shares you will have to sell the shares by multiple actions in the same Stockround. Regards, Martin |