Skip to content

Commit

Permalink
Fix typos and update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
skykatik committed Mar 27, 2021
1 parent 21019f0 commit f6f46fc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/java/inside/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Config{
* This is placeholder based patter, {@link LightweightHub#formatter}.
* <p>
* Syntax: <b>%fieldName%</b> - where fieldName is one of
* a fields is {@link Host} class
* a fields is {@link Host} class.
*/
public String onlinePattern = "\uE837 [accent]Online: %players%\n\uE827 Map: %mapname%";

Expand Down
12 changes: 6 additions & 6 deletions src/main/java/inside/HostData.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ public class HostData{
/** The teleport block size. */
public int size;

/** The last <b>X</b> coordinate of the teleport border. */
/** The latter <b>X</b> coordinate of the teleport border. */
public int teleportX;
/** The last <b>Y</b> coordinate of the teleport border. */
/** The latter <b>Y</b> coordinate of the teleport border. */
public int teleportY;

/** The teleport title i.e. server display name. */
public String title = "title";
/** The last <b>X</b> coordinate of the title signboard. */
/** The latter <b>X</b> coordinate of the title signboard. */
public int titleX;
/** The last <b>Y</b> coordinate of the title signboard. */
/** The latter <b>Y</b> coordinate of the title signboard. */
public int titleY;

/** The last <b>X</b> coordinate of the status label. */
/** The latter <b>X</b> coordinate of the status label. */
public int labelX;
/** The last <b>Y</b> coordinate of the status label. */
/** The latter <b>Y</b> coordinate of the status label. */
public int labelY;

public HostData(int port, int size, int teleportX, int teleportY, int titleX, int titleY, int labelX, int labelY){
Expand Down

0 comments on commit f6f46fc

Please sign in to comment.