mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-08 13:44:39 +02:00
* Resp DONT to WONT NEW-ENVIRONMENT
This commit is contained in:
parent
d028cbfc6b
commit
dfb4f17c5f
1 changed files with 5 additions and 1 deletions
|
@ -538,7 +538,11 @@ TelnetClient.prototype.handleWillCommand = function(evt) {
|
||||||
};
|
};
|
||||||
|
|
||||||
TelnetClient.prototype.handleWontCommand = function(evt) {
|
TelnetClient.prototype.handleWontCommand = function(evt) {
|
||||||
this.connectionDebug(evt, 'WONT');
|
if('new environment' === evt.option) {
|
||||||
|
this.dont.new_environment();
|
||||||
|
} else {
|
||||||
|
this.connectionDebug(evt, 'WONT');
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
TelnetClient.prototype.handleDoCommand = function(evt) {
|
TelnetClient.prototype.handleDoCommand = function(evt) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue