From 1ff4a0774e790acfb0f8a54d8e87f9540876072e Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 23 Aug 2020 19:00:46 -0400 Subject: remove unneeded access modifier --- src/SMAPI/IAssetDataForMap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SMAPI') diff --git a/src/SMAPI/IAssetDataForMap.cs b/src/SMAPI/IAssetDataForMap.cs index 769ca07c..bfaba9ba 100644 --- a/src/SMAPI/IAssetDataForMap.cs +++ b/src/SMAPI/IAssetDataForMap.cs @@ -13,6 +13,6 @@ namespace StardewModdingAPI /// The map from which to copy. /// The tile area within the source map to copy, or null for the entire source map size. This must be within the bounds of the map. /// The tile area within the target map to overwrite, or null to patch the whole map. The original content within this area will be erased. This must be within the bounds of the existing map. - public void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null); + void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null); } } -- cgit