()
| 1380 | } |
| 1381 | |
| 1382 | public Team getTeam() |
| 1383 | { |
| 1384 | UUID uuid = this.getUniqueID(); |
| 1385 | |
| 1386 | if (this.teamUuid != uuid) |
| 1387 | { |
| 1388 | this.teamUuid = uuid; |
| 1389 | this.teamUuidString = uuid.toString(); |
| 1390 | } |
| 1391 | |
| 1392 | return this.worldObj.getScoreboard().getPlayersTeam(this.teamUuidString); |
| 1393 | } |
| 1394 | |
| 1395 | public static enum SpawnPlacementType |
| 1396 | { |
nothing calls this directly
no test coverage detected