diff options
| author | Sarah B <git@sarahduck.ca> | 2023-12-25 00:02:12 -0800 |
|---|---|---|
| committer | Sarah B <git@sarahduck.ca> | 2023-12-25 00:02:12 -0800 |
| commit | ff3cbc5b49f8618531c5778d69b49c0aa4a9442a (patch) | |
| tree | bdee837392669a3eb4ac3f0296c3749c6485078c /Oneko.cs | |
| parent | 760fb20f4d248d19524392d2b8c3a3fcdb762453 (diff) | |
Changed how server handles UserInfo, and started work on networking the cursor's sprite.
Diffstat (limited to 'Oneko.cs')
| -rw-r--r-- | Oneko.cs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ abstract class Oneko : Drawable if (File.Exists(SpriteSheetPath) && new FileInfo(SpriteSheetPath).Length < 128*256*3) { SpriteSheet = Bitmap.FromPNGMemory(File.ReadAllBytes(SpriteSheetPath)); } else { - Console.WriteLine("Path to spritesheet was invalid, using the default."); + Console.WriteLine("Path to spritesheet was invalid or the file was too big, using the default."); SpriteSheet = Bitmap.FromPNGMemory(EmbeddedResources.GetResource("nekos.oneko.png")); } } |
