Changeset 7fa452f in network-game for common/Game.cpp
- Timestamp:
- Nov 8, 2014, 1:38:54 AM (10 years ago)
- Branches:
- master
- Children:
- 347d768
- Parents:
- 306758e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Game.cpp
r306758e r7fa452f 184 184 switch (it->type) { 185 185 case OBJECT_BLUE_FLAG: 186 if (p->team == 1) {186 if (p->team == 2) { 187 187 p->hasBlueFlag = true; 188 188 itemId = it->id; … … 190 190 break; 191 191 case OBJECT_RED_FLAG: 192 if (p->team == 0) {192 if (p->team == 1) { 193 193 p->hasRedFlag = true; 194 194 itemId = it->id;
Note:
See TracChangeset
for help on using the changeset viewer.