You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing some more testing with attributes, I've noticed that the min and default configurations don't take the intended effects. Setting a value in the default field does correctly set it as the default, but it also overrides the min field. This means whatever value is set in default becomes the new min/minimum.
For example, a config that looks like this:
destruction:
default: 100
min: 0
max: 200
Will act like a config that looks like this:
destruction:
default: 100
min: 100
max: 200
The text was updated successfully, but these errors were encountered:
After doing some more testing with attributes, I've noticed that the
min
anddefault
configurations don't take the intended effects. Setting a value in thedefault
field does correctly set it as the default, but it also overrides themin
field. This means whatever value is set indefault
becomes the newmin
/minimum.For example, a config that looks like this:
Will act like a config that looks like this:
The text was updated successfully, but these errors were encountered: