@@ -151,7 +151,7 @@ For example does `.getBotList("123456789012345678", "lbots.org")` return the fol
151151The first String parameter is used for the internal caching.
152152
153153### Complete Bot info
154- Calling ` .getAll(... ) ` returns a JSONObject from all the botlists and with some general information.
154+ Calling ` .getBotInfo(Long|String ) ` returns a JSONObject from all the botlists and with some general information.
155155
156156The JSONObject can look like this:
157157``` json
@@ -181,7 +181,7 @@ The JSONObject can look like this:
181181` name ` , ` discriminator ` , ` owners ` , ` server_count ` and ` invite ` are based on the most common appearances of the data.
182182
183183### Bot info from all Bot lists
184- You can call ` .getBotListInfo(... ) ` to only receive the bot info from all the Botlists.
184+ You can call ` .getBotListInfo(Long|String ) ` to only receive the bot info from all the Botlists.
185185
186186The returned JSONObject can look like this:
187187``` json
@@ -199,7 +199,7 @@ The returned JSONObject can look like this:
199199` {"data"} ` is the JSON that is returned by the provided Botlist meaning it's different for each site.
200200
201201### Bot info of a single site
202- With ` .getBotListInfo(... , Site|String) ` can you receive the info of a specific site.
202+ With ` .getBotListInfo(Long|String , Site|String) ` can you receive the info of a specific site.
203203The returned data depends on the selected site and can be different for each one.
204204
205205### Invite
@@ -211,7 +211,7 @@ The invite is based on the most common appearance on the different bot lists.
211211The server count is based on the most common appearance on the different bot lists.
212212
213213### Owners
214- You can call ` .getOwners(... ) ` to get the owners of a Bot from all the Botlists.
214+ You can call ` .getOwners(Long|String ) ` to get the owners of a Bot from all the Botlists.
215215The info is returned as ArrayList and is based on how often the info is provided by the botlists.
216216
217217## Exceptions
0 commit comments