Skip to content
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

Function code fails to display in chat! #431

Open
ghost opened this issue Jan 28, 2020 · 1 comment
Open

Function code fails to display in chat! #431

ghost opened this issue Jan 28, 2020 · 1 comment

Comments

@ghost
Copy link

ghost commented Jan 28, 2020

If I define a function, like so:
/js var yeet = function () { console.log('yeet'); };

And type the variable into the JS command:
/js yeet

The expected output should be to display the function code. However, nothing happens.
In the console, an error appears:

[14:05:49 INFO]: harrix432 issued server command: /js var yeet = function () { console.log('yeet'); };
[14:05:52 INFO]: harrix432 issued server command: /js yeet
[14:05:52 ERROR]: [scriptcraft] Error while trying to display result: function () { console.log('yeet'); }, Error: java.lang.NoSuchMethodException: Can't unambiguously select between fixed arity signatures [(java.lang.String), (net.md_5.bungee.api.chat.BaseComponent)] of the method org.bukkit.craftbukkit.v1_15_R1.entity.CraftPlayer.sendMessage for argument types [jdk.nashorn.internal.runtime.ScriptFunction]

Looks like the player.sendMessage() has changed in some way that breaks this.

@jwulf
Copy link
Contributor

jwulf commented Jan 28, 2020

You need to do /js yeet.toString()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant