projects
/
Questionable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e126031
)
Add 'comfort' emote
author
Liza Carvelli
<liza@carvel.li>
Fri, 6 Sep 2024 11:25:10 +0000
(13:25 +0200)
committer
Liza Carvelli
<liza@carvel.li>
Fri, 6 Sep 2024 11:25:10 +0000
(13:25 +0200)
QuestPaths/quest-v1.json
patch
|
blob
|
blame
|
history
Questionable.Model/Questing/Converter/EmoteConverter.cs
patch
|
blob
|
blame
|
history
Questionable.Model/Questing/EEmote.cs
patch
|
blob
|
blame
|
history
diff --git
a/QuestPaths/quest-v1.json
b/QuestPaths/quest-v1.json
index ad911e72430f0aa1bc35b3518e47fc251cbbc101..cb6c9c5e599287a7b6e60542b98472534555e8ad 100644
(file)
--- a/
QuestPaths/quest-v1.json
+++ b/
QuestPaths/quest-v1.json
@@
-778,7
+778,8
@@
"bow",
"uchiwasshoi",
"clap",
- "victorypose"
+ "victorypose",
+ "comfort"
]
}
}
diff --git
a/Questionable.Model/Questing/Converter/EmoteConverter.cs
b/Questionable.Model/Questing/Converter/EmoteConverter.cs
index e6080ce0b2feb5564169057c35a4139ce537452c..935bc32ae217a9b9b823475a5feb5a23a1e5be70 100644
(file)
--- a/
Questionable.Model/Questing/Converter/EmoteConverter.cs
+++ b/
Questionable.Model/Questing/Converter/EmoteConverter.cs
@@
-32,5
+32,6
@@
public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.Uchiwasshoi, "uchiwasshoi" },
{ EEmote.Clap, "clap" },
{ EEmote.VictoryPose, "victorypose" },
+ { EEmote.Comfort, "comfort" },
};
}
diff --git
a/Questionable.Model/Questing/EEmote.cs
b/Questionable.Model/Questing/EEmote.cs
index 517f9db742ec8949963175f933fbc2721a2df853..0b81fd3e8fb58b0dce5ab3f765cd3903a383da1b 100644
(file)
--- a/
Questionable.Model/Questing/EEmote.cs
+++ b/
Questionable.Model/Questing/EEmote.cs
@@
-33,4
+33,5
@@
public enum EEmote
Uchiwasshoi = 278,
Clap = 7,
VictoryPose = 122,
+ Comfort = 9,
}