Testing doc script

This commit is contained in:
Anuken
2020-06-14 18:41:42 -04:00
parent 126b54b981
commit 5f79040faa
37 changed files with 59 additions and 30 deletions

View File

@@ -287,7 +287,8 @@ public class Administration{
}
/**
* Makes a player an admin. Returns whether this player was already an admin.
* Makes a player an admin.
* @return whether this player was already an admin.
*/
public boolean adminPlayer(String id, String usid){
PlayerInfo info = getCreateInfo(id);
@@ -303,7 +304,8 @@ public class Administration{
}
/**
* Makes a player no longer an admin. Returns whether this player was an admin in the first place.
* Makes a player no longer an admin.
* @return whether this player was an admin in the first place.
*/
public boolean unAdminPlayer(String id){
PlayerInfo info = getCreateInfo(id);

View File

@@ -46,7 +46,7 @@ public class LiquidModule extends BlockModule{
return smoothLiquid;
}
/** Returns total amount of liquids. */
/** @return total amount of liquids. */
public float total(){
return total;
}