diff --git a/README.md b/README.md index 34233d56..9816db91 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,8 @@ Now that you are logged in, run the following commands. ```bash # Creates a user for this computer which uses a password and grant said user all privileges. # Change mydarkflameuser to a custom username and password to a custom password. -GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; +CREATE USER 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password'; +GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES; # Then create a database for Darkflame Universe to use.