-
-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Add Ignored users for Party Commands #1469
Feature: Add Ignored users for Party Commands #1469
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also can you please do the generic changes (make functions private and change the config variable to be called config) like in #1464
src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haven't tested in game but code looks fine
This pull request has conflicts with the base branch "beta". Please resolve those so we can test out your changes. |
# Conflicts: # src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
Conflicts have been resolved! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we wanted to use Hypixel's /ignore list, not create our own?
Own ignore list is fine here I think, this is like a list of not trusted party members but they arent bad enough to be fully blocked from being in the party, or at least that is my understanding |
if this is the case that wasn't very clear for me from the conversation in the discord thread, but i could redo this to use hypixel's list instead of a custom one if you think that's better |
i dont think thats better, i just thought we decided to do it this way. if this was not clear, im fine with the current version as well |
This pull request has conflicts with the base branch "beta". Please resolve those so we can test out your changes. |
Conflicts have been resolved! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works now
src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missclick
This pull request has conflicts with the base branch "beta". Please resolve those so we can test out your changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merge conflicts
…cklist-party-commands # Conflicts: # src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
Conflicts have been resolved! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What
Adds
/shignore
which lets you blacklist certain people from using party commands.This has several sub-commands, including
add
,remove
,list
andclear
.add
andremove
always take another argument, being the username to add/remove.list
takes an optional argument, checking if a given username is ignored, or listing every username when none is given.clear
clears the list with a confirmation prompt.https://canary.discord.com/channels/997079228510117908/1229893091285008526
Images
Changelog New Features