TPGamesNL
TPGamesNL
> this actually already exists: > > https://github.com/SkriptLang/Skript/blob/e72349ec8dda606a947c3568b3f387fb5007863d/src/main/java/ch/njol/skript/expressions/ExprCommand.java#L54 That expression can only be used in on command events, not custom commands
You don't need the entity type in the pattern along with location, converters will take care of that
Ah okay, that makes sense, I hadn't seen that part of the method initially
I don't think the tests should be a nightly tasks by default, those are reserved for GH Actions only (IMO we should actually only have them for the ones on...
In 1.13, spawning a lingering potion requires usage of `LingeringPotion` entity, versions about that have this class deprecated and allow you to use `ThrownPotion` instead. Skript should register a LingeringPotionData...
> also sometimes if you change smth in a function and reload the skript with the function, it will think the function has been deleted. (reloading again fixes the issue)...
> - There are consistent errors in 1.9.4 and 1.12.2 from the test [`3305-named inventory-item.sk`](https://github.com/SkriptLang/Skript/blob/master/src/test/skript/tests/regressions/3305-named%20inventory-item.sk#L9) ([error](https://github.com/SkriptLang/Skript/runs/1943275005?check_suite_focus=true#step:7:144)). > - This causes ~75% of the tests to not be ran and thus...
~~Additionally, some of the tests fail at random ([link](https://github.com/SkriptLang/Skript/pull/3736/commits)): ~~ ~~[The failed build](https://github.com/SkriptLang/Skript/runs/2024503192#step:7:768): ~~ Lime fixed at #4962
~~IMO no tests should be ran during Gradle building either~~ done in #4091
~~The `AssertionError`s not being caught, is caused by~~ https://github.com/SkriptLang/Skript/blob/d33f96ba9f854a9abf969387c009961ce7f8d913/src/main/java/ch/njol/skript/lang/TriggerItem.java#L97 ~~not catching `AssertionError` (because it's not an `Exception`, it's an `Error`)~~ EDIT: fixed in https://github.com/SkriptLang/Skript/pull/4767