diff --git a/1.3/Assemblies/RJW_Menstruation.dll b/1.3/Assemblies/RJW_Menstruation.dll
index bb60e44..69b97c7 100644
Binary files a/1.3/Assemblies/RJW_Menstruation.dll and b/1.3/Assemblies/RJW_Menstruation.dll differ
diff --git a/1.3/Languages/English/Keyed/RJW_Menstruation.xml b/1.3/Languages/English/Keyed/RJW_Menstruation.xml
index c173ac6..35c8cec 100644
--- a/1.3/Languages/English/Keyed/RJW_Menstruation.xml
+++ b/1.3/Languages/English/Keyed/RJW_Menstruation.xml
@@ -112,6 +112,7 @@
Chance of fertilization in the next hour: {0}%
The chance of pregnancy of a fertilized egg.
The white overlay indicates fertilization chance of sperm in womb.
Reset to default
+ Gather cum
Vaginal washing
Custom Hybrid Editor
diff --git a/1.3/SexperienceModule/Assemblies/SexperienceModule.dll b/1.3/SexperienceModule/Assemblies/SexperienceModule.dll
index bc305c7..1ca42db 100644
Binary files a/1.3/SexperienceModule/Assemblies/SexperienceModule.dll and b/1.3/SexperienceModule/Assemblies/SexperienceModule.dll differ
diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/Translations.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/Translations.cs
index 306acf6..4217d11 100644
--- a/1.3/source/RJW_Menstruation/RJW_Menstruation/Translations.cs
+++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/Translations.cs
@@ -120,6 +120,7 @@ namespace RJW_Menstruation
public static readonly string EstimatedEggLifespan = "EstimatedEggLifespan".Translate();
public static string FertilityDesc(string value) => "FertilityDesc".Translate(value);
+ public static readonly string Gizmo_GatherCum = "Gizmo_GatherCum".Translate();
public static readonly string FloatMenu_CleanSelf = "FloatMenu_CleanSelf".Translate();
public static readonly string CustomHybrid_List_Title = "CustomHybrid_List_Title".Translate();
diff --git a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs
index 3eb7e98..e96e9d1 100644
--- a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs
+++ b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/GetGizmos.cs
@@ -25,8 +25,8 @@ namespace RJW_Menstruation.Sexperience
private static Gizmo CreateGizmo_GatherCum(HediffComp_Menstruation comp)
{
Texture2D icon = TextureCache.GatherCum_Bucket;
- string label = Keyed.RS_GatherCum;
- string description = Keyed.RS_GatherCum;
+ string label = Translations.Gizmo_GatherCum;
+ string description = Translations.Gizmo_GatherCum;
Gizmo gizmo = new Command_Toggle
{
defaultLabel = label,
diff --git a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/Pawn_Patch.cs b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/Pawn_Patch.cs
index 6d58e82..68648c4 100644
--- a/1.3/source/RJW_Menstruation/SexperienceModule/Patch/Pawn_Patch.cs
+++ b/1.3/source/RJW_Menstruation/SexperienceModule/Patch/Pawn_Patch.cs
@@ -40,7 +40,7 @@ namespace RJW_Menstruation.Sexperience
public static FloatMenuOption MakeMenu(Pawn pawn, LocalTargetInfo target)
{
- FloatMenuOption option = FloatMenuUtility.DecoratePrioritizedTask(new FloatMenuOption(Keyed.RS_GatherCum, delegate ()
+ FloatMenuOption option = FloatMenuUtility.DecoratePrioritizedTask(new FloatMenuOption(Translations.Gizmo_GatherCum, delegate ()
{
pawn.jobs.TryTakeOrderedJob(new Verse.AI.Job(VariousDefOf.VaginaWashingwithBucket, null, target, target.Cell));
}, MenuOptionPriority.Low), pawn, target);