diff --git a/P3D/Content/Data/Scripts/floe/daycare/man.dat b/P3D/Content/Data/Scripts/floe/daycare/man.dat index 976a69be3..ecab3911c 100644 Binary files a/P3D/Content/Data/Scripts/floe/daycare/man.dat and b/P3D/Content/Data/Scripts/floe/daycare/man.dat differ diff --git a/P3D/Content/Data/Scripts/phone/012.dat b/P3D/Content/Data/Scripts/phone/012.dat index 47bd402c2..9a3af8d89 100644 Binary files a/P3D/Content/Data/Scripts/phone/012.dat and b/P3D/Content/Data/Scripts/phone/012.dat differ diff --git a/P3D/Content/Data/Scripts/phone/034.dat b/P3D/Content/Data/Scripts/phone/034.dat index f07ba14cf..45b4351f9 100644 Binary files a/P3D/Content/Data/Scripts/phone/034.dat and b/P3D/Content/Data/Scripts/phone/034.dat differ diff --git a/P3D/Content/Data/Scripts/phone/035.dat b/P3D/Content/Data/Scripts/phone/035.dat index d86997b0a..b33b68bdd 100644 --- a/P3D/Content/Data/Scripts/phone/035.dat +++ b/P3D/Content/Data/Scripts/phone/035.dat @@ -14,7 +14,7 @@ version=2 :when:1 @text.show(Glad you called!~Your is~doing just fine!) :when:2 - :select: + :select: :when:70 @storage.set(string,breed_text,The two seem to get~along very well.) :when:50 diff --git a/P3D/Content/Data/Scripts/route34/daycare/oldLady.dat b/P3D/Content/Data/Scripts/route34/daycare/oldLady.dat index 6f6ebdce3..b49ab6de5 100644 Binary files a/P3D/Content/Data/Scripts/route34/daycare/oldLady.dat and b/P3D/Content/Data/Scripts/route34/daycare/oldLady.dat differ diff --git a/P3D/World/ActionScript/V2/ScriptConstructs/DoDaycare.vb b/P3D/World/ActionScript/V2/ScriptConstructs/DoDaycare.vb index 79f84081e..0761638fe 100644 --- a/P3D/World/ActionScript/V2/ScriptConstructs/DoDaycare.vb +++ b/P3D/World/ActionScript/V2/ScriptConstructs/DoDaycare.vb @@ -154,8 +154,12 @@ Next Case "canbreed" Dim dayCareID As Integer = int(argument.GetSplit(0)) + Dim wmultiplier As Boolean = True + If argument.Contains(CChar(",")) Then + wmultiplier = CBool(argument.GetSplit(1)) + End If - Return Daycare.CanBreed(dayCareID) + Return Daycare.CanBreed(dayCareID, wmultiplier) End Select Return DEFAULTNULL