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!
|
||||
*/
|
||||
function ItemsPanel({ outfitState, outfitSaving, loading, dispatchToOutfit }) {
|
||||
const { zonesAndItems, incompatibleItems } = outfitState;
|
||||
const { altStyleId, zonesAndItems, incompatibleItems } = outfitState;
|
||||
|
||||
return (
|
||||
<ClassNames>
|
||||
|
@ -98,7 +98,11 @@ function ItemsPanel({ outfitState, outfitSaving, loading, dispatchToOutfit }) {
|
|||
zoneLabel="Incompatible"
|
||||
afterHeader={
|
||||
<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"
|
||||
openDelay={100}
|
||||
>
|
||||
|
|
|
@ -738,8 +738,7 @@ function StyleExplanation() {
|
|||
opacity="0.7"
|
||||
marginTop="2"
|
||||
>
|
||||
"Alt Styles" are special NC items that override the pet's usual appearance
|
||||
via the{" "}
|
||||
"Alt Styles" are NC items that override the pet's appearance via the{" "}
|
||||
<Box
|
||||
as="a"
|
||||
href="https://www.neopets.com/stylingchamber/"
|
||||
|
@ -748,7 +747,7 @@ function StyleExplanation() {
|
|||
>
|
||||
Styling Chamber
|
||||
</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>
|
||||
<br />
|
||||
WIP: Only Support staff see this tab for now! 💖
|
||||
|
|
Loading…
Reference in a new issue