Removed unused arguments from CSteamGroup#deleteAnnouncement

This commit is contained in:
Alexander Corn 2016-01-17 19:19:04 -05:00
parent eb8d094bf1
commit f1bbfc4901

View File

@ -88,8 +88,8 @@ CSteamGroup.prototype.editAnnouncement = function(annoucementID, headline, conte
this._community.editGroupAnnouncement(this.steamID, annoucementID, headline, content, callback)
};
CSteamGroup.prototype.deleteAnnouncement = function(annoucementID, headline, content, callback) {
this._community.deleteGroupAnnouncement(this.steamID, annoucementID, headline, content, callback)
CSteamGroup.prototype.deleteAnnouncement = function(annoucementID, callback) {
this._community.deleteGroupAnnouncement(this.steamID, annoucementID, callback)
};
CSteamGroup.prototype.scheduleEvent = function(name, type, description, time, server, callback) {