summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-16 01:13:39 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-16 01:13:39 -0400
commitf1bdafde238280b771abb1d74ae780b6b86bdc79 (patch)
tree7eefc9d51dab26cb12f3f2b6d7452008486094b2 /src
parentc9a6d327110806d20877c477095238846a8d83bf (diff)
downloadSMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.tar.gz
SMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.tar.bz2
SMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.zip
use sharper pufferchick images
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.Web/Views/Index/Index.cshtml2
-rw-r--r--src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.pngbin2921 -> 1099 bytes
-rw-r--r--src/SMAPI.Web/wwwroot/Content/images/pufferchick.pngbin0 -> 831 bytes
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/index.js2
4 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/Index/Index.cshtml b/src/SMAPI.Web/Views/Index/Index.cshtml
index fbfc2239..8145d354 100644
--- a/src/SMAPI.Web/Views/Index/Index.cshtml
+++ b/src/SMAPI.Web/Views/Index/Index.cshtml
@@ -34,7 +34,7 @@
</div><br />
}
<a href="https://stardewvalleywiki.com/Modding:Player_Guide" class="secondary-cta">Player guide</a><br />
- <img id="pufferchick" src="favicon.ico" />
+ <img id="pufferchick" src="Content/images/pufferchick.png" />
</div>
<h2>Get help</h2>
diff --git a/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png b/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png
index 63eb8970..f359146c 100644
--- a/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png
+++ b/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png
Binary files differ
diff --git a/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png b/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png
new file mode 100644
index 00000000..1de9cf47
--- /dev/null
+++ b/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png
Binary files differ
diff --git a/src/SMAPI.Web/wwwroot/Content/js/index.js b/src/SMAPI.Web/wwwroot/Content/js/index.js
index 8fa1c26f..d0734b02 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/index.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/index.js
@@ -6,7 +6,7 @@ $(document).ready(function () {
pufferchick.attr("src", "Content/images/pufferchick-cool.png");
},
function () {
- pufferchick.attr("src", "favicon.ico");
+ pufferchick.attr("src", "Content/images/pufferchick.png");
}
);