projects
/
Questionable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4767af7
)
Added emote "Sundrop Dance"
author
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Sun, 22 Sep 2024 17:06:58 +0000
(
01:06
+0800)
committer
Plogon Enjoyer
<plogon_enjoyer@no-reply.com>
Mon, 23 Sep 2024 16:15:11 +0000
(
00:15
+0800)
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 e5d946bd5dcd3516f418f6b5845010d5453fc932..0c0661f7487425c1e68db6a1c9376535d8e91deb 100644
(file)
--- a/
QuestPaths/quest-v1.json
+++ b/
QuestPaths/quest-v1.json
@@
-808,7
+808,8
@@
"comfort",
"battlestance",
"doze",
- "box"
+ "box",
+ "sundropdance"
]
}
}
diff --git
a/Questionable.Model/Questing/Converter/EmoteConverter.cs
b/Questionable.Model/Questing/Converter/EmoteConverter.cs
index 183bf4806f45c688fc9ce99a8c6d51f72d944e6b..213d909a30470833f5ed8cfc5883d8411e9cdb02 100644
(file)
--- a/
Questionable.Model/Questing/Converter/EmoteConverter.cs
+++ b/
Questionable.Model/Questing/Converter/EmoteConverter.cs
@@
-36,5
+36,6
@@
public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.BattleStance, "battlestance" },
{ EEmote.Doze, "doze" },
{ EEmote.Box, "box" },
+ { EEmote.SundropDance, "sundropdance"}
};
}
diff --git
a/Questionable.Model/Questing/EEmote.cs
b/Questionable.Model/Questing/EEmote.cs
index 60e9661a832a482b78b9e3a8441cf19ec909ad20..4f1b2c6f725123fdd71ce335a8797fdbf958b464 100644
(file)
--- a/
Questionable.Model/Questing/EEmote.cs
+++ b/
Questionable.Model/Questing/EEmote.cs
@@
-37,4
+37,5
@@
public enum EEmote
BattleStance = 121,
Doze = 13,
Box = 166,
+ SundropDance = 120,
}