Skip to content

Commit

Permalink
set to string
Browse files Browse the repository at this point in the history
  • Loading branch information
5pilow committed Sep 4, 2023
1 parent c61ba70 commit c7ce35b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/leekscript/runner/AI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1339,6 +1339,9 @@ public String string(Object value) throws LeekRunException {
} else if (value instanceof IntervalLeekValue) {
// TODO
return "Interval";
} else if (value instanceof SetLeekValue) {
// TODO
return "Set";
} else if (value instanceof String) {
return (String) value;
} else if (value instanceof ClassLeekValue) {
Expand Down

0 comments on commit c7ce35b

Please sign in to comment.