mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
CSHARP-16 Fix printing bug
This commit is contained in:
@@ -24,7 +24,10 @@ internal class Neck : ParentPart
|
||||
|
||||
public void AppendTo(StringBuilder builder, char feelerCharacter)
|
||||
{
|
||||
_head.AppendTo(builder, feelerCharacter);
|
||||
builder.AppendLine(" N N").AppendLine(" N N");
|
||||
if (IsPresent)
|
||||
{
|
||||
_head.AppendTo(builder, feelerCharacter);
|
||||
builder.AppendLine(" N N").AppendLine(" N N");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user