File Details
3.5 Forge: Fix method invoke & Type consolidating
- R
- Dec 15, 2024
- 1.73 MB
- 24
- 1.16.5
- Forge
File Name
Rhizo-forge-3.5.jar
Supported Versions
- 1.16.5
Curse Maven Snippet
Rhizo 3.4 -> 3.5
Fix method invoke & Type consolidating
- fix invoking of native java method
- ReflectASM is more buggy than expected, so it's now removed, fixing some method invoking problem
- type consolidating
- variable types in native java method can now be consolidated so that type wrapper can be applied to them
- for example method
compare(another: T): boolforComparable<T>, where the typeTcan be consolidated
- fix type wrapper for wrapping JS function to Java interface when there are overloaded methods
- for example
create(id: string, type: string): Builderandcreate(id: string, modifier: Consumer<Builder>): void
- for example