Fix: Artist JavaDoc parameter descriptions

This commit is contained in:
MatteoPellegrino05
2026-05-06 19:00:22 +02:00
parent c7d8af48cc
commit 61ed20f6a3
@@ -32,21 +32,22 @@ public class Artist extends Character {
}
/**
* Creates an Artist character card with the specified era.
* Creates an Artist character card with the specified image id and era.
*
* @param idIMG
* @param Era the era of the Artist card
* @param idIMG the image identifier of the Artist card.
* @param Era the era of the Artist card.
*/
public Artist(String idIMG,int Era) {
super(idIMG,Era, CharacterType.ARTIST);
}
/**
* Creates an Artist character card with the specified Era and minimum number of players required to play it.
* Creates an Artist character card with the specified image id, era and
* minimum number of players required to play it.
*
* @param idIMG
* @param Era the era of the Artist card
* @param nMin the minimum number of players required for the card
* @param idIMG the image identifier of the Artist card.
* @param Era the era of the Artist card.
* @param nMin the minimum number of players required for the card.
*/
public Artist(String idIMG,int Era,int nMin) {
super(idIMG,Era, CharacterType.ARTIST,nMin);