[Freeciv-Dev] Re: (PR#9556) advdiplomacy.c:629
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
<URL: http://rt.freeciv.org/Ticket/Display.html?id=9556 >
Mateusz Stefek wrote:
><URL: http://rt.freeciv.org/Ticket/Display.html?id=9556 >
>
> /* Modify by hatred */
> if (adip->love < 0) {
> kill_desire += kill_desire / 100 * adip->love;
> }
>This looks strange. kill_desire is decreased if we don't like this guy.
>Am I right?
>
>--
>mateusz
>
>
Also, it looks like the closer adip->love is to zero, the more it
affects kill_desire...
/* Modify by hatred */
if (adip->love < 0) {
kill_desire -= (kill_desire / 100) * adip->love;
}
- [Freeciv-Dev] Re: (PR#9556) advdiplomacy.c:629,
Ciaran Mac Lochlainn <=
|
|