From 691bbc0f6727464231caadbd5f95b86343a7a64c Mon Sep 17 00:00:00 2001 From: mshirt Date: Tue, 6 Dec 2016 15:28:36 -0600 Subject: [PATCH] Making the computer username default Even for steam --- scripts/Game_Oneshot.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Game_Oneshot.rb b/scripts/Game_Oneshot.rb index 9e72c91..8966800 100644 --- a/scripts/Game_Oneshot.rb +++ b/scripts/Game_Oneshot.rb @@ -20,7 +20,8 @@ class Game_Oneshot @bruteforce_start = nil end def self.get_user_name - user_name = (Steam.enabled? ? Steam::USER_NAME : Oneshot::USER_NAME).split(/\s+/) + user_name = (Oneshot::USER_NAME).split(/\s+/) + #user_name = (Steam.enabled? ? Steam::USER_NAME : Oneshot::USER_NAME).split(/\s+/) if user_name[0].casecmp('the') == 0 || user_name[0].casecmp('a') == 0 return user_name.join(' ') else