senseiwells / EssentialClient

EssentialClient is a client side mod originally forked from Carpet Client for 1.15.2 that implements new client side features
MIT License
77 stars 14 forks source link

compilation errors in the library #100

Closed skippyall closed 1 year ago

skippyall commented 1 year ago

When running a client script using the minecraft library, I get a compilation error grafik

skippyall commented 1 year ago

It seems to have to do something with the ... argument, when commenting this line out, the next one with this argument type throws an error

senseiwells commented 1 year ago

You are importing the stubs. This means you are likely doing this:

import * from minecraft;

But you need to do this:

import * from Minecraft;
skippyall commented 1 year ago

Oh, in the wiki it says you should import minecraft in small case

senseiwells commented 1 year ago

Where in the wiki does it say that?