diff --git a/README.md b/README.md
index 145d7e6..b333dfb 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Canopy
-0.1-Alpha (Panama Red) - Hotfix 1
+0.1-Alpha (Panama Red) - Hotfix 2
=========
Canopy - /ˈkæ.nə.pi/:
diff --git a/package.json b/package.json
index 8554c13..ee1cb25 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "canopy-of-alpha",
- "version": "0.1.1",
- "canopyDisplayVersion": "0.1-Alpha (Panama Red) - Hotfix 1",
+ "version": "0.1.2",
+ "canopyDisplayVersion": "0.1-Alpha (Panama Red) - Hotfix 2",
"license": "AGPL-3.0-only",
"dependencies": {
"@braintree/sanitize-url": "^7.1.1",
diff --git a/src/app/channel/tokebot.js b/src/app/channel/tokebot.js
index 6e41471..52743eb 100644
--- a/src/app/channel/tokebot.js
+++ b/src/app/channel/tokebot.js
@@ -148,6 +148,15 @@ class tokebot{
//Add the toking user to the tokers map
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
}else{
//Tell them to fuck off
@@ -210,7 +219,7 @@ class tokebot{
//Decrement toke time
this.tokeCounter--;
//try again in another second
- this.tokeTimer = setTimeout(this.countdown.bind(this), 1000)
+ this.tokeTimer = setTimeout(this.countdown.bind(this), 1000);
}
/**