Skip to content

Commit

Permalink
Add module descriptions in JavaDoc format
Browse files Browse the repository at this point in the history
Descriptions were added for two modules - SnowGolemShearDropsPumpkinModule and RandomColorJebSheepShearModule. These comments in JavaDoc format will help in better understanding the functionality of these modules by giving an insight into their purpose and behavior.
  • Loading branch information
YouHaveTrouble committed Jan 7, 2024
1 parent ed5fb3b commit b0d5464
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
import java.util.ArrayList;
import java.util.List;

/**
* If enabled causes sheep named jeb_ to drop random colors of wool
*/
public class RandomColorJebSheepShearModule implements PurpurExtrasModule, Listener {

private final List<Material> coloredWool = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

import java.util.ArrayList;

/**
* A module that disables the dropping of pumpkins when a Snow Golem is sheared.
*/
public class SnowGolemShearDropsPumpkinModule implements PurpurExtrasModule, Listener {

@Override
Expand Down

0 comments on commit b0d5464

Please sign in to comment.