SkriptLang / skript-reflect

Powerful reflection utilities for Skript.
MIT License
56 stars 19 forks source link

Two effects with same pattern cause exception - duplicate #93

Closed ffddf111 closed 3 months ago

AyhamAl-Ali commented 3 months ago

We need to know the custom structure that caused this error. Can you try reloading each script you have until that error appears again then send it or send the specific lines that causing it

sovdeeth commented 3 months ago

This error appears similar to #86 and another issue I encountered where parsing is interrupted by an error loading the methods of a class. Can you set your verbosity to very high, restart the server, and send latest.log?

AyhamAl-Ali commented 3 months ago

@cyclsunmark Even if it's fixed we would like to know what caused it and how you fixed it so we can fix it from our side as well :) can you share with us more info

ffddf111 commented 3 months ago

import: me.clip.placeholderapi.PlaceholderAPI

expression placeholder %string% [from %offline player%]: get: return PlaceholderAPI.setPlaceholders(expr-2, "%%%expr-1%%%")

I was using this syntax in skript1.

in skript2

import: me.clip.placeholderapi.PlaceholderAPI

expression placeholder %string% [from %offline player%]: get: return PlaceholderAPI.setPlaceholders(expr-2, "%%%expr-1%%%") This was a problem that arose while writing this again. So expression placeholder %string% [from %offline player%]: get: return PlaceholderAPI.setPlaceholders(expr-2, "%%%expr-1%%%")

Since I deleted only this part, the error did not appear.

AyhamAl-Ali commented 3 months ago

Yes that seems to be same as #86. Thank you for the info.

ffddf111 commented 3 months ago

When is it going to be fixed?