From ffa7b2f2e78eab2fa8142f3a719574a5689a1f5a Mon Sep 17 00:00:00 2001 From: sararar Date: Thu, 20 Jun 2013 13:13:50 -0400 Subject: [PATCH] Issue #704. added a fix so that g# will now work on the space piano. tested and works. Signed-off-by: sararar --- code/game/objects/structures/musician.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/structures/musician.dm b/code/game/objects/structures/musician.dm index e881423e485..bff50419ee2 100644 --- a/code/game/objects/structures/musician.dm +++ b/code/game/objects/structures/musician.dm @@ -34,6 +34,9 @@ oct++ note++ acc = "n" + else if(acc == "#" && (note == 7)) //G# + note = 1 + acc = "b" else if(acc == "#") // mass convert all sharps to flats, octave jump already handled acc = "b" note++