mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-01-18 18:02:32 +01:00
Minor bugs fixed.
This commit is contained in:
parent
9cabaa9eb3
commit
6d064f74b6
@ -637,9 +637,10 @@ user_history_add(User *user, gint type, const gchar *team_name,
|
||||
string0) == 0)
|
||||
{
|
||||
/** Same cup round. */
|
||||
if(strcmp(g_array_index(user->history, UserHistory, i).string[2],
|
||||
string2) == 0 &&
|
||||
type == USER_HISTORY_REACH_CUP_ROUND)
|
||||
if(type == USER_HISTORY_REACH_CUP_ROUND &&
|
||||
string2 != NULL &&
|
||||
strcmp(g_array_index(user->history, UserHistory, i).string[2],
|
||||
string2) == 0)
|
||||
return;
|
||||
|
||||
his = &g_array_index(user->history, UserHistory, i);
|
||||
|
@ -318,7 +318,7 @@
|
||||
<commentary>_P0_ steps up to take the penalty</commentary>
|
||||
<commentary>_P0_ has a chance to score with a penalty kick</commentary>
|
||||
<commentary>_P0_ can make some of _T_POSS__ worries [disappear|go away] with this penalty</commentary>
|
||||
<commentary>Can [_P0_|_T_POSS_] convert the spot kick</commentary>
|
||||
<commentary>Can [_P0_|_T_POSS__] convert the spot kick</commentary>
|
||||
<commentary>You have to bury the nerves, swallow and concentrate when your taking penalties</commentary>
|
||||
<commentary cond="_PEN_POSS__ > 1">_T_POSS__ looks like they are playing for penalties.</commentary>
|
||||
<commentary cond="_GD_ = 0">_T_POSS__ can sneak ahead if they convert this</commentary>
|
||||
|
Loading…
Reference in New Issue
Block a user