// if (Hudson.getInstance().getPlugin("jabber") != null) {
//
// }
if (Hudson.getInstance().getPlugin("ci-game") != null) {
UserScoreProperty property = user.getProperty(UserScoreProperty.class);
if (property != null) {
int score = (int) property.getScore();
buf.append("\n").append("Current score in continuous integration game: ").append(score);
}
}
return buf.toString();
} else {