Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ example: |
//Define string of commandId
string commandId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";

//Reset all user cooldowns
//Remove all user cooldowns
CPH.CommandRemoveAllUserCooldowns(commandId);

return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ example: |
//Define string of commandId
string commandId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";

//Reset global cooldown
//Remove global cooldown
CPH.CommandRemoveGlobalCooldown(commandId);

return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ example: |
CPH.TryGetArg("userType",out string userType);
Enum.TryParse(userType, out Platform platform);
//Reset user's cooldown
//Remove user's cooldown
CPH.CommandRemoveUserCooldown(commandId, userId, platform);
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ example: |
string commandId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";
//Set global cooldown back to start
CPH.CommandRemoveGlobalCooldown(commandId);
CPH.CommandResetGlobalCooldown(commandId);
return true;
}
Expand Down
Loading