diff options
| author | Sarah Bradley <git@sarahduck.ca> | 2023-12-25 16:24:47 -0800 |
|---|---|---|
| committer | Sarah Bradley <git@sarahduck.ca> | 2023-12-25 16:24:47 -0800 |
| commit | f6100c020613de7980861b7d77f4c37e1a65a025 (patch) | |
| tree | a73f5a0b0f133a34bfd0e171cf7af01d43e72279 /MouseNet.cs | |
| parent | 626c005b5217b70089fdd6956f2736f600015026 (diff) | |
Added image size limits
Diffstat (limited to 'MouseNet.cs')
| -rw-r--r-- | MouseNet.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MouseNet.cs b/MouseNet.cs index bb2987b..457b245 100644 --- a/MouseNet.cs +++ b/MouseNet.cs @@ -37,7 +37,7 @@ class MouseNet : Mouse public static void SpawnNetMouse(ClientUser user) { - Bitmap cursor = Bitmap.Deserialize(user.CursorSprite); + Bitmap cursor = Bitmap.Deserialize(user.CursorSprite, 32, 32, FallbackImg); MouseNet NewMouse = new(user, cursor); } }
\ No newline at end of file |
