GCK Help buttons sends to the wrong manual pages

Vassal 3.7.18 - Windows 10

The Help button of the Module, Map and Desk GCK sends to doc/ReferenceManual/Map.html instead of (i suppose) doc/ReferenceManual/GlobalKeyCommands.html#module,#map or #deck.

The Startup one sends to the right page but lacks the #startup part.

The controlling code here is in VASSAL/build/module/map/MassKeyCommand.java:

  @Override
  public HelpFile getHelpFile() {
    return HelpFile.getReferenceManualPage("Map.html", "GlobalKeyCommand"); // NON-NLS
  }

StartupGlobalKeyCommand overrides this, which is why you see a different result for that.