- Documented `getBot()`
- Made `getBot()` protected
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-17 22:53:43 +02:00
parent b779537f2f
commit 355518d84d
1 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,12 @@ public abstract class Mod
this.bot = bot;
}
public final Bot getBot()
/**
* Returns the `Bot` instance associated with this module
*
* Returns: the associated `Bot`
*/
protected final Bot getBot()
{
return bot;
}