-
-
Notifications
You must be signed in to change notification settings - Fork 407
Closed
Labels
bugAn issue that needs to be fixed. Alternatively, a PR fixing an issue.An issue that needs to be fixed. Alternatively, a PR fixing an issue.completedThe issue has been fully resolved and the change will be in the next Skript update.The issue has been fully resolved and the change will be in the next Skript update.variablesRelated to variables and/or storing them.Related to variables and/or storing them.
Description
Description
Wenn a list has a list inside a list and the values are deleted. the "size of" expression still thinks there values inside of the variable
Steps to Reproduce
command /variablesizebug:
trigger:
set {test::test} to "test"
set {test::test::test} to "test"
set {_s} to size of {test::*}
send "%{_s}%"
delete {test::test::test}
delete {test::test}
set {_s} to size of {test::*}
send "%{_s}%"
delete {test::*}
set {_s} to size of {test::*}
send "%{_s}%"
Expected Behavior
send values should be 1 0 0 instead of 1 1 0
Server Information
- Server version/platform: Paper version git-Paper-642 (MC: 1.13.2)
- Skript version: skript version 2.3.7 & skript version 2.4-beta9
Metadata
Metadata
Assignees
Labels
bugAn issue that needs to be fixed. Alternatively, a PR fixing an issue.An issue that needs to be fixed. Alternatively, a PR fixing an issue.completedThe issue has been fully resolved and the change will be in the next Skript update.The issue has been fully resolved and the change will be in the next Skript update.variablesRelated to variables and/or storing them.Related to variables and/or storing them.