Skip to content
This repository has been archived by the owner on Oct 15, 2023. It is now read-only.

[tags] Add support for upper and lower blocks #159

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
| RoleUtils | 1.4.0 | <details><summary>Reaction roles, massroling, and role targeting!.</summary>Reaction roles, massroling, and role targeting!.</details> | PhenoM4n4n, Bobloy, TrustyJaid, and Neuro Assassin |
| Calculator | 1.0.1 | <details><summary>Calculate stuff</summary>Calculate stuff</details> | PhenoM4n4n |
| SlashTags | 0.6.0 | <details><summary>Create custom slash commands.</summary>Create custom slash commands.</details> | PhenoM4n4n |
| Tags | 2.3.7 | <details><summary>Create and use tags.</summary>Create and use tags.</details> | PhenoM4n4n, sravan, and npc203 |
| Tags | 2.3.8 | <details><summary>Create and use tags.</summary>Create and use tags.</details> | PhenoM4n4n, sravan, and npc203 |
| TypeRacer | 1.0.4 | <details><summary>Race to see who can type the fastest!</summary>Race to see who can type the fastest!</details> | Cats3153 and PhenoM4n4n |
| Webhook | 1.2.1 | <details><summary>Webhook related commands.</summary>Various webhook commands to create and send messages along webhooks.</details> | PhenoM4n4n |

Expand Down
2 changes: 1 addition & 1 deletion tags/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Tags(
The TagScript documentation can be found [here](https://phen-cogs.readthedocs.io/en/latest/).
"""

__version__ = "2.3.7"
__version__ = "2.3.8"
__author__ = ("PhenoM4n4n", "sravan", "npc203")

def format_help_for_context(self, ctx: commands.Context):
Expand Down
2 changes: 2 additions & 0 deletions tags/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ async def initialize_interpreter(self, data: dict = None):
tse.OverrideBlock(),
tse.RedirectBlock(),
tse.CooldownBlock(),
tse.UpperBlock(),
tse.LowerBlock(),
]
tag_blocks = [
DeleteBlock(),
Expand Down