Compare commits
2 commits
cd136aa6a5
...
b06149cf22
Author | SHA1 | Date | |
---|---|---|---|
b06149cf22 | |||
f30213697a |
2 changed files with 8 additions and 5 deletions
|
@ -58,7 +58,7 @@ import { useDeleteOutfitMutation } from "../loaders/outfits";
|
||||||
* full width of the container, it doesn't look like it!
|
* full width of the container, it doesn't look like it!
|
||||||
*/
|
*/
|
||||||
function ItemsPanel({ outfitState, outfitSaving, loading, dispatchToOutfit }) {
|
function ItemsPanel({ outfitState, outfitSaving, loading, dispatchToOutfit }) {
|
||||||
const { zonesAndItems, incompatibleItems } = outfitState;
|
const { altStyleId, zonesAndItems, incompatibleItems } = outfitState;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ClassNames>
|
<ClassNames>
|
||||||
|
@ -98,7 +98,11 @@ function ItemsPanel({ outfitState, outfitSaving, loading, dispatchToOutfit }) {
|
||||||
zoneLabel="Incompatible"
|
zoneLabel="Incompatible"
|
||||||
afterHeader={
|
afterHeader={
|
||||||
<Tooltip
|
<Tooltip
|
||||||
label="These items don't fit this pet"
|
label={
|
||||||
|
altStyleId != null
|
||||||
|
? "Many items don't fit Alt Style pets"
|
||||||
|
: "These items don't fit this pet"
|
||||||
|
}
|
||||||
placement="top"
|
placement="top"
|
||||||
openDelay={100}
|
openDelay={100}
|
||||||
>
|
>
|
||||||
|
|
|
@ -738,8 +738,7 @@ function StyleExplanation() {
|
||||||
opacity="0.7"
|
opacity="0.7"
|
||||||
marginTop="2"
|
marginTop="2"
|
||||||
>
|
>
|
||||||
"Alt Styles" are special NC items that override the pet's usual appearance
|
"Alt Styles" are NC items that override the pet's appearance via the{" "}
|
||||||
via the{" "}
|
|
||||||
<Box
|
<Box
|
||||||
as="a"
|
as="a"
|
||||||
href="https://www.neopets.com/stylingchamber/"
|
href="https://www.neopets.com/stylingchamber/"
|
||||||
|
@ -748,7 +747,7 @@ function StyleExplanation() {
|
||||||
>
|
>
|
||||||
Styling Chamber
|
Styling Chamber
|
||||||
</Box>
|
</Box>
|
||||||
. The pet's color doesn't have to match.
|
. Not all items fit Alt Style pets. The pet's color doesn't have to match.
|
||||||
<SupportOnly>
|
<SupportOnly>
|
||||||
<br />
|
<br />
|
||||||
WIP: Only Support staff see this tab for now! 💖
|
WIP: Only Support staff see this tab for now! 💖
|
||||||
|
|
Loading…
Reference in a new issue