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

can't parsed furnace #4841

Closed
1 task done
juzijun233 opened this issue Jun 28, 2022 · 4 comments
Closed
1 task done

can't parsed furnace #4841

juzijun233 opened this issue Jun 28, 2022 · 4 comments
Labels
duplicate For bugs or requests that have already been made and are currently open.

Comments

@juzijun233
Copy link

juzijun233 commented Jun 28, 2022

Skript/Server Version

[08:54:04 INFO]: [Skript] Skript's aliases can be found here: https://github.com/SkriptLang/skript-aliases
[08:54:04 INFO]: [Skript] Skript's documentation can be found here: https://skriptlang.github.io/Skript
[08:54:04 INFO]: [Skript] Server Version: git-Purpur-1428 (MC: 1.17.1)
[08:54:04 INFO]: [Skript] Skript Version: 2.6.2
[08:54:04 INFO]: [Skript] Installed Skript Addons:
[08:54:04 INFO]: [Skript]  - skript-gui v1.3-beta1 (https://github.com/APickledWalrus/skript-gui)
[08:54:04 INFO]: [Skript]  - skript-yaml v1.4
[08:54:04 INFO]: [Skript] Installed dependencies: None

Tried the build, the problem persists
2.6.2-nightly-611c7f3

Bug Description

cannot parsed "furnace"
I created a list via yaml, all items in it are converted normally and can be given to the player, except furnace

Expected Behavior

parsed "furnace" to item furnace

Steps to Reproduce

command /parsed_furnace:
    trigger:
        set {_name} to "furnace"
        set {_item} to {_name} parsed as item
        log "%{_item}%" #<-none
        give 1 of {_item} to the player

Errors or Screenshots

1 grass block -> grass block
[00:17:23 INFO]: [Skript] [***.sk] 2 oak planks -> oak wood planks
[00:17:23 INFO]: [Skript] [***.sk] 3 bedrock -> bedrock block
[00:17:23 INFO]: [Skript] [***.sk] 4 sand -> sand block
[00:17:23 INFO]: [Skript] [***.sk] 5 coal ore -> coal ore
[00:17:23 INFO]: [Skript] [***.sk] 6 iron ore -> iron ore
[00:17:23 INFO]: [Skript] [***.sk] 7 gold ore -> gold ore
[00:17:23 INFO]: [Skript] [***.sk] 8 iron block -> iron block
[00:17:23 INFO]: [Skript] [***.sk] 9 gold block -> gold block
[00:17:23 INFO]: [Skript] [***.sk] 10 glass -> plain glass block
[00:17:23 INFO]: [Skript] [***.sk] 11 clay -> clay
[00:17:23 INFO]: [Skript] [***.sk] 12 pumpkin -> pumpkin
[00:17:23 INFO]: [Skript] [***.sk] 13 melon -> melon block
[00:17:23 INFO]: [Skript] [***.sk] 14 bone block -> bone block
[00:17:23 INFO]: [Skript] [***.sk] 15 chest -> chest
[00:17:23 INFO]: [Skript] [***.sk] 16 furnace -> <none>
[00:17:23 INFO]: [Skript] [***.sk] 17 jukebox -> jukeboxes
[00:17:23 INFO]: [Skript] [***.sk] 18 torch -> floor torch
[00:17:23 INFO]: [Skript] [***.sk] 19 anvil -> unbroken anvil
[00:17:23 INFO]: [Skript] [***.sk] 20 dirt path -> grass path block
[00:17:23 INFO]: [Skript] [***.sk] 21 redstone block -> redstone block
[00:17:23 INFO]: [Skript] [***.sk] 22 beacon -> beacon
[00:17:23 INFO]: [Skript] [***.sk] 23 iron ingot -> iron ingot
[00:17:23 INFO]: [Skript] [***.sk] 24 gold ingot -> gold ingot
[00:17:23 INFO]: [Skript] [***.sk] 25 clay ball -> clay
[00:17:23 INFO]: [Skript] [***.sk] 26 egg -> egg
[00:17:23 INFO]: [Skript] [***.sk] 27 water bucket -> water bucket
[00:17:23 INFO]: [Skript] [***.sk] 28 ender eye -> eye of ender
[00:17:23 INFO]: [Skript] [***.sk] 29 book -> book
[00:17:23 INFO]: [Skript] [***.sk] 30 potato -> potato
[00:17:23 INFO]: [Skript] [***.sk] 31 chicken -> chicken
[00:17:23 INFO]: [Skript] [***.sk] 32 apple -> apple
[00:17:23 INFO]: [Skript] [***.sk] 33 iron axe -> iron axe
[00:17:23 INFO]: [Skript] [***.sk] 34 gold axe -> gold axe
[00:17:23 INFO]: [Skript] [***.sk] 35 stone axe -> stone axe
[00:17:23 INFO]: [Skript] [***.sk] 36 arrow -> arrow
[00:17:23 INFO]: [Skript] [***.sk] 37 elytra -> elytra

Other

No response

Agreement

  • I have read the guidelines above and affirm I am following them with this report.
@AyhamAl-Ali
Copy link
Member

Not sure if this is an issue but furnace can't be parsed as item but it can be parsed as itemtype and these are different from each other
image

@TheLimeGlass
Copy link
Contributor

TheLimeGlass commented Jun 29, 2022

Not sure if this is an issue but furnace can't be parsed as item but it can be parsed as itemtype and these are different from each other image

Yes there are multiple duplicate issues about this, and I believe there is a pull request to fix it as well if this is the case here.

@TheLimeGlass TheLimeGlass added investigating The core developers are currently investigating this issue. Usually used for complex cases. bug An issue that needs to be fixed. Alternatively, a PR fixing an issue. duplicate For bugs or requests that have already been made and are currently open. and removed investigating The core developers are currently investigating this issue. Usually used for complex cases. labels Jun 29, 2022
@TheLimeGlass
Copy link
Contributor

Duplicate #4776

@TPGamesNL TPGamesNL removed the bug An issue that needs to be fixed. Alternatively, a PR fixing an issue. label Jun 30, 2022
@juzijun233
Copy link
Author

I tried https://github.com/SkriptLang/Skript/actions/runs/2595647195
But the problem seems to still exist, the furnace still outputs none

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate For bugs or requests that have already been made and are currently open.
Projects
None yet
Development

No branches or pull requests

4 participants