From 41a0b802e8fdc94f8880fb06de2fa2e4bf909513 Mon Sep 17 00:00:00 2001 From: Useroth Date: Fri, 26 Apr 2019 17:01:30 +0200 Subject: [PATCH 1/3] Added myself to the admin list. Duh. --- config/admins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/admins.txt b/config/admins.txt index 27a2178e2c..4a2b4ac8da 100644 --- a/config/admins.txt +++ b/config/admins.txt @@ -8,4 +8,4 @@ # NOTE: syntax was changed to allow hyphenation of ranknames, since spaces are stripped. # ############################################################################################### -yourckeygoeshere = Host +Useroth = Host From 7018372c5c5547004c75bc9102b3c6ee0db54b34 Mon Sep 17 00:00:00 2001 From: Useroth Date: Sun, 28 Apr 2019 15:48:02 +0200 Subject: [PATCH 2/3] Revert "Added myself to the admin list. Duh." This reverts commit 41a0b802e8fdc94f8880fb06de2fa2e4bf909513. --- config/admins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/admins.txt b/config/admins.txt index 4a2b4ac8da..27a2178e2c 100644 --- a/config/admins.txt +++ b/config/admins.txt @@ -8,4 +8,4 @@ # NOTE: syntax was changed to allow hyphenation of ranknames, since spaces are stripped. # ############################################################################################### -Useroth = Host +yourckeygoeshere = Host From cd5317d1375d6e4efc901b807b9f52f52460699b Mon Sep 17 00:00:00 2001 From: Useroth Date: Sun, 28 Apr 2019 15:49:00 +0200 Subject: [PATCH 3/3] Fixed katana jaunt not working on dark tiles. --- code/datums/dash_weapon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/dash_weapon.dm b/code/datums/dash_weapon.dm index 03badb2069..a870ecae66 100644 --- a/code/datums/dash_weapon.dm +++ b/code/datums/dash_weapon.dm @@ -32,7 +32,7 @@ if(!IsAvailable()) return var/turf/T = get_turf(target) - if(target in view(user.client.view, get_turf(user))) + if(target in view(user.client.view, user)) var/obj/spot1 = new phaseout(get_turf(user), user.dir) user.forceMove(T) playsound(T, dash_sound, 25, 1)