From 6fdc391c0ab63758891d2752e42a5aec3dacbdd9 Mon Sep 17 00:00:00 2001 From: Kodos Atoz Date: Tue, 24 Jun 2014 21:39:38 -0500 Subject: [PATCH] Update install.lua Fixing the 'n' to 'N' because OCD. --- .../assets/opencomputers/loot/OpenOS/bin/install.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/assets/opencomputers/loot/OpenOS/bin/install.lua b/src/main/resources/assets/opencomputers/loot/OpenOS/bin/install.lua index 3b835638b5..f656a6e899 100644 --- a/src/main/resources/assets/opencomputers/loot/OpenOS/bin/install.lua +++ b/src/main/resources/assets/opencomputers/loot/OpenOS/bin/install.lua @@ -54,10 +54,10 @@ if not result then end computer.setBootAddress(choice.address) -print("All done! Would you like to reboot now? [Y/n]") +print("All done! Would you like to reboot now? [Y/N]") local result = io.read() if not result or result == "" or result:sub(1, 1):lower() == "y" then print("\nRebooting now!") computer.shutdown(true) end -print("Returning to shell.") \ No newline at end of file +print("Returning to shell.")