Changeset - r19569:9eccdfe770a1
[Not reviewed]
master
0 1 0
zuu - 12 years ago 2012-08-27 20:37:20
zuu@openttd.org
(svn r24500) -Fix: Don't show the global goals as company goals for spectators
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/goal_gui.cpp
Show inline comments
 
@@ -190,7 +190,7 @@ struct GoalListWindow : Window {
 
		num = 0;
 

	
 
		FOR_ALL_GOALS(s) {
 
			if (s->company == _local_company) {
 
			if (s->company == _local_company && s->company != INVALID_COMPANY) {
 
				if (IsInsideMM(pos, 0, cap)) {
 
					/* Display the goal */
 
					SetDParamStr(0, s->text);
0 comments (0 inline, 0 general)