This repository was archived by the owner on Feb 6, 2021. It is now read-only.
Added Coin flip and Dice roll#86
Closed
Rohith04MVK wants to merge 1 commit into
Closed
Conversation
janaSunrise
suggested changes
Jul 18, 2020
Comment on lines
+42
to
+55
| @command() | ||
| async def flip_coin(): | ||
| def coin_filp(): | ||
| coin_filp = randint(0, 1) | ||
| if coin_filp == 0: | ||
| return "Heads!" | ||
| else: | ||
| return "Tails" | ||
|
|
||
| await ctx.send(coin_filp()) | ||
| @command() | ||
| async def dice(): | ||
| dice_roll = randint(1,6) | ||
| await ctx.send(dice_roll) |
Contributor
There was a problem hiding this comment.
please resurrect the indentations
Contributor
|
This is a clear duplicate of #87. Every feature should have only 1 corresponding Pull Request. If you want to address the requested changes you can simply push to your branch, this Pull Request is basically mirroring that branch and every new commit to that branch will appear here, there is no reason to create new pull requests for new features, I'm closing this as a duplicate of #87, continue working on that Pull Request instead. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.