Closed duianto closed 2 years ago
The output messages in lesson 23, practice exercise: Clearing up the crates https://gdquest.github.io/learn-gdscript/staging/#course/lesson-23-append-to-arrays/practice-B7tKRHJM.tres
Calls the gems:
and there's a fourth gem without a symbol that's just called: gem
The fire/red gem is called red gem
in the first example in lesson 24:
https://gdquest.github.io/learn-gdscript/staging/#course/lesson-24-access-array-indices/lesson.tres
The order of the gems in the left panel, doesn't match the names in the inventory
variable.
I'll open a separate issue about it.
In lesson 24's exercise, Using the right crystals
https://gdquest.github.io/learn-gdscript/staging/#course/lesson-24-access-array-indices/practice-ErO9L4MW.tres
The error message uses the names of the symbols on the gems:
But the Goal
uses the gem colors.
Expected
Maybe the error message also should use color names, because at least two of the gems don't have symbols on them: white and green
As mentioned above: https://github.com/GDQuest/learn-gdscript/issues/408#issuecomment-1058916473
The white gem seems to just be called gem
, which might be to generic.
Issue description:
In Lesson 23, maybe the gem names, should be based on symbols or on the gem colors.
To Reproduce Steps to reproduce the bug:
Using arrays as stacks
Observed behavior
The gem names in the second example are:
fire gem
blue gem
yellow gem
Maybe the gem names should be changed to either:
Match the symbols on the gems: The symbols and colors on the gems seem to indicate that they are: color:
blue
, symbol:snow flake
, it could be called:freeze gem
color:yellow
, symbol:lightning
, it could be called:lightning gem
color:red
, symbol:fire
, it already is called:fire gem
Or if it's better to use the color names, like the second example does for two of the gems:
blue gem
andyellow gem
, then it might be more consistent to change:fire gem
tored gem
which would result in:red gem
blue gem
yellow gem