Skip to content

Commit

Permalink
Update OpenDreamRuntime/Procs/Native/DreamProcNativeRoot.cs
Browse files Browse the repository at this point in the history
Co-authored-by: wixoa <[email protected]>
  • Loading branch information
amylizzle and wixoaGit authored Feb 18, 2024
1 parent 907bf91 commit dc9629a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenDreamRuntime/Procs/Native/DreamProcNativeRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static DreamValue NativeProc_ascii2text(NativeProc.Bundle bundle, DreamOb
if (!ascii.TryGetValueAsInteger(out int asciiValue))
throw new Exception($"{ascii} is not a number");

return new DreamValue(char.ConvertFromUtf32(asciiValue).ToString());
return new DreamValue(char.ConvertFromUtf32(asciiValue));
}

[DreamProc("block")]
Expand Down

0 comments on commit dc9629a

Please sign in to comment.