diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -56,7 +56,7 @@ to run in the WorldsPlayer client. WORLDSPLAYER_JAR=/path/to/worlds.jar bin/decompile # Edit the source files in the source directory -vi source/... +find source -type f -name "*.java" -exec sed -i.bak 's/this\.setName(longID);/this.setName(longID + " (" + longID + ")");/' {} \; # Recompile WorldsPlayer JAVAC=/path/to/javac bin/recompile @@ -65,6 +65,10 @@ JAVAC=/path/to/javac bin/recompile cp out/worlds.jar /path/to/worlds.jar ``` +Now that we've changed the username format from `username` to `username (username)`, we can run WorldsPlayer to verify that the change has been applied. + + + # Licence This project is licensed with the [GNU General Public License v3.0](./LICENSE).
\ No newline at end of file |