Skip to content

Commit

Permalink
Merge pull request #40 from CyR1en/development
Browse files Browse the repository at this point in the history
Sync to main
  • Loading branch information
CyR1en authored Feb 29, 2024
2 parents 56dacc2 + bf64417 commit db94bb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ java {

PluginManifest pluginManifest = [
name : 'CommandPrompter',
version : new Version(major: 2, minor: 8, patch: 1, fix: 0, classifier: 'SNAPSHOT'),
version : new Version(major: 2, minor: 8, patch: 2, fix: 0, classifier: 'SNAPSHOT'),
author : 'CyR1en',
description: 'Perfect companion plugin for inventory UI menu.',
entry : 'com.cyr1en.commandprompter.CommandPrompter'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public String getCompleteCommand() {
for (String prompt : prompts) {
if (completedClone.isEmpty())
break;
command = command.replaceFirst(prompt, completedClone.pollFirst());
command = command.replace(prompt, completedClone.pollFirst());
}
return "/" + command;
}
Expand Down

0 comments on commit db94bb9

Please sign in to comment.