Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Correction or Workaround 1.10 - make commands lowercase only.

Featured Replies

Posted

Just noticed that commands seem to must be lowercase in the first argument for the tab completion to work (might just be the first character). ExecuteFile and execute interfere with each other (will clear to the first /). But executefile and execute work fine. Nothing different but the name of the command.

 

Easier to change to be consistent and use lowercase than to try to figure it out. (Probably happened in 1.9 versions also.)

 

Just a shoulda known better. So the workaround or correction is always use lowercase for command names.

 

 

Explain better what you're talking about.

What steps are you doing to reproduce.

What are you expecting to happen.

What is happening?

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • Author

I originally developed the mod to have an uppercase command called "ExecuteFile". I had always typed the ExecuteFile command and then used tab completion to add the rest of the command arguments.

 

I discovered recently that the tab completion was not working, so after trying a number of things , I changed the command to lowercase.

 

Causing the problem.

 

1) Created a command mod with the command name "ExecuteFile".

2) in the command execute coded to get list of matching command strings.

then

3) Typed any command starting with e (e.g. /exec) then tabbed.

4) Entry clears to /

then

3) Typed the command to /ExecuteF then tabbed.

4) Entry shows /ExecuteFile and works normally

then

3) Typed /execute {space}

4) Entry shows /execute and works normally

then

3) Typed /execute without a space

4) Entry clears to /

 

 

This caused the command to clear on the tab until after the F is entered. The user could enter 'execute space' and the string would not reset (deleted to the first /). 

 

I don't believe this is a forge behavior.

This has the issues.

if (args.length <= 0) {

List<String> ly = getListOfStringsMatchingLastWord(args,
		"ExecuteFile","/ExecuteEile");
      	return ly;
}

This works fine.

if (args.length <= 0) {

List<String> ly = getListOfStringsMatchingLastWord(args,
		"executefile","/executefile");
      	return ly;
}

 

Now typing /e {tab} displays

 

/execute, /entitydata, /effect, /executefile, /enchant

 

and sets the entry to /execute

 

 

Thank you.

I don't think that this is a forge behavior. I failed to use a convention of lower case commands.

----- Opinion ----

To me, it's a workaround, or fail to follow convention. While much of the rest of minecraft is inconsistent on case, commands appear to be lowercase. My reason to view it as a "gotta know" stems from how commands are parsed in terms of case in ordinary minecraft.

 

For example in standard minecraft, as a command, using /kill @e[type=villager] (entity uuid error) will not work, and /kill @e[Type=Villager] will kill everything (matches every entity), only /kill @e[type=Villager] will correctly work. Knowing to type /kill @e[type=Villager] is a "gotta know". That's why I think it's not a forge issue, but modders should know.

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.