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.
doc/ReferenceManual/Map.html
doc/ReferenceManual/GlobalKeyCommands.html#module
#map
#deck
The Startup one sends to the right page but lacks the #startup part.
#startup
The controlling code here is in VASSAL/build/module/map/MassKeyCommand.java:
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.
StartupGlobalKeyCommand