Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve quick commands #322

Open
wants to merge 1 commit into
base: vive_1_7_10
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/com/mtbs3d/minecrift/settings/VRSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -1826,18 +1826,18 @@ public static synchronized boolean renameProfile(String originalProfile, String
public String[] getQuickCommandsDefaults(){

String[] out = new String[12];
out[0] = "/gamemode 0";
out[1] = "/gamemode 1";
out[0] = "/gamemode survival";
out[1] = "/gamemode creative";
out[2] = "/help";
out[3] = "/home";
out[4] = "/sethome";
out[5] = "/spawn";
out[6] = "hi!";
out[7] = "bye!";
out[8] = "folow me!";
out[9] = "take this!";
out[10] = "thank you!";
out[11] = "praise the sun!";
out[6] = "Hi!";
out[7] = "Bye!";
out[8] = "Follow me!";
out[9] = "Take this!";
out[10] = "Thank you!";
out[11] = "Praise the sun!";

return out;

Expand Down