diff --git a/SpriteLibrary/Sprite.cs b/SpriteLibrary/Sprite.cs
index d814085..c4983c6 100644
--- a/SpriteLibrary/Sprite.cs
+++ b/SpriteLibrary/Sprite.cs
@@ -206,7 +206,9 @@ namespace SpriteLibrary
///
public bool HasBeenDrawn { get { return _HasBeenDrawn; } private set { _HasBeenDrawn = value; } }
///
- /// The sprite location as found on the base image. This is usually the easiest location to use.
+ /// The sprite location as found on the base image. This is usually the easiest location to use. Use this to
+ /// figure out where the sprite is, but use the function to
+ /// move it to another location.
///
public Point BaseImageLocation { get { return new Point(xPositionOnImage, yPositionOnImage); } }
///