I can edit the javadoc of the param of net.minecraft.world.tick.ChunkTickScheduler#getAllTicks (m_khwqakbu), which is an override of net.minecraft.world.tick.SerializableTickScheduler#getAllTicks.
In the editor it looks like this, with null for the param name:
The mapping file looks like this:
METHOD m_khwqakbu (J)Ljava/util/List;
ARG 1
COMMENT used to convert from {@link net.minecraft.world.tick.OrderedTick#triggerTick() OrderedTick.triggerTick}
COMMENT to {@link net.minecraft.world.tick.Tick#delay() Tick.delay}
And in fakeSource it looks like this:
/**
* Mapping not found
*/
@Override
public List<Tick<T>> getAllTicks(long time) {
Adding the comment to the base method's param works fine.
Working on a QMap PR based on https://github.com/QuiltMC/quilt-mappings/commit/5f958526ccfcb3e3b8c9a3d31ea31fdcbd2ce487
I can edit the javadoc of the param of
net.minecraft.world.tick.ChunkTickScheduler#getAllTicks
(m_khwqakbu
), which is an override ofnet.minecraft.world.tick.SerializableTickScheduler#getAllTicks
.In the editor it looks like this, with null for the param name:
The mapping file looks like this:
And in fakeSource it looks like this:
Adding the comment to the base method's param works fine.