summaryrefslogtreecommitdiff
path: root/Oneko.cs
diff options
context:
space:
mode:
authorSarah B <git@sarahduck.ca>2023-12-25 00:02:12 -0800
committerSarah B <git@sarahduck.ca>2023-12-25 00:02:12 -0800
commitff3cbc5b49f8618531c5778d69b49c0aa4a9442a (patch)
treebdee837392669a3eb4ac3f0296c3749c6485078c /Oneko.cs
parent760fb20f4d248d19524392d2b8c3a3fcdb762453 (diff)
Changed how server handles UserInfo, and started work on networking the cursor's sprite.
Diffstat (limited to 'Oneko.cs')
-rw-r--r--Oneko.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Oneko.cs b/Oneko.cs
index 31652ed..7a1e3ac 100644
--- a/Oneko.cs
+++ b/Oneko.cs
@@ -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"));
}
}