Compare commits
2 commits
47bd012c8d
...
3deb2e2d52
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3deb2e2d52 | ||
|
|
7436626df7 |
|
|
@ -9,7 +9,7 @@ Canopy
|
||||||
<a href="https://git.ourfore.st/rainbownapkin/canopy/issues" target="_blank"><img src="https://git.ourfore.st/rainbownapkin/canopy/badges/issues/closed.svg"></a>
|
<a href="https://git.ourfore.st/rainbownapkin/canopy/issues" target="_blank"><img src="https://git.ourfore.st/rainbownapkin/canopy/badges/issues/closed.svg"></a>
|
||||||
<a href="https://www.gnu.org/licenses/agpl-3.0.en.html" target="_blank"><img src="https://img.shields.io/badge/License-AGPL_v3-663366.svg"></a>
|
<a href="https://www.gnu.org/licenses/agpl-3.0.en.html" target="_blank"><img src="https://img.shields.io/badge/License-AGPL_v3-663366.svg"></a>
|
||||||
|
|
||||||
0.1-Alpha (Panama Red) - Hotfix 1
|
0.1-Alpha (Panama Red) - Hotfix 2
|
||||||
=========
|
=========
|
||||||
|
|
||||||
Canopy - /ˈkæ.nə.pi/:
|
Canopy - /ˈkæ.nə.pi/:
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "canopy-of-alpha",
|
"name": "canopy-of-alpha",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"canopyDisplayVersion": "0.1-Alpha (Panama Red) - Hotfix 1",
|
"canopyDisplayVersion": "0.1-Alpha (Panama Red) - Hotfix 2",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@braintree/sanitize-url": "^7.1.1",
|
"@braintree/sanitize-url": "^7.1.1",
|
||||||
|
|
|
||||||
|
|
@ -148,6 +148,15 @@ class tokebot{
|
||||||
|
|
||||||
//Add the toking user to the tokers map
|
//Add the toking user to the tokers map
|
||||||
this.tokers.set(commandObj.socket.user.user, commandObj.argumentArray[0].toLowerCase());
|
this.tokers.set(commandObj.socket.user.user, commandObj.argumentArray[0].toLowerCase());
|
||||||
|
|
||||||
|
if(this.tokeCounter <= 3){
|
||||||
|
//Drop the toke timer
|
||||||
|
clearTimeout(this.tokeTimer);
|
||||||
|
//Roll the toke counter back to 3
|
||||||
|
this.tokeCounter = 3;
|
||||||
|
//Re-start the toke timer
|
||||||
|
this.tokeTimer = setTimeout(this.countdown.bind(this), 1000);
|
||||||
|
}
|
||||||
//If the user is already in the toke
|
//If the user is already in the toke
|
||||||
}else{
|
}else{
|
||||||
//Tell them to fuck off
|
//Tell them to fuck off
|
||||||
|
|
@ -210,7 +219,7 @@ class tokebot{
|
||||||
//Decrement toke time
|
//Decrement toke time
|
||||||
this.tokeCounter--;
|
this.tokeCounter--;
|
||||||
//try again in another second
|
//try again in another second
|
||||||
this.tokeTimer = setTimeout(this.countdown.bind(this), 1000)
|
this.tokeTimer = setTimeout(this.countdown.bind(this), 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue