Skip to content

Commit

Permalink
Merge pull request #37 from tnfAngel/pr/35
Browse files Browse the repository at this point in the history
Pr/35
  • Loading branch information
tnfAngel authored Nov 23, 2024
2 parents 65b3e3f + 3aeae9c commit 2e05202
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions docs/general/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 4.1.0

### Changes
* Chatting
* Added `Client#chat` as the client's chat manager
* Deprecated `ClientParty#chatBan()`

### Fixes
* Party Meta
* Fixed a bug that caused party members to be invisible when the client created the party
* Chatting
* Fixed an issue that caused the client to not receive chat messages

## 4.0.0

### Additions
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fnbr",
"version": "4.0.0",
"version": "4.1.0",
"description": "A library to interact with Epic Games' Fortnite HTTP and XMPP services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/structures/party/ClientParty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class ClientParty extends Party {
* @deprecated This feature has been deprecated since epic moved chatting away from xmpp
*/
// eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars
public async chatBan(member: string) {
public async chatBan() {
const deprecatedFn = deprecate(() => { }, deprecationNotOverXmppAnymore);

return deprecatedFn();
Expand Down

0 comments on commit 2e05202

Please sign in to comment.