v0.1.8
This commit is contained in:
@@ -10,21 +10,24 @@ namespace MMOKitchenReborn.Patches
|
||||
[HarmonyPostfix]
|
||||
static void CustomerPlayersRateModifier_Postfix(ref float __result, int player_count)
|
||||
{
|
||||
__result = 1 + (player_count * 0.25f);
|
||||
if (player_count > 4)
|
||||
__result = 1 + (player_count * 0.25f);
|
||||
}
|
||||
|
||||
[HarmonyPatch("FireSpreadModifier")]
|
||||
[HarmonyPostfix]
|
||||
static void FireSpreadModifier_Postfix(ref float __result, int player_count)
|
||||
{
|
||||
__result = 0.75f + (player_count * 0.25f);
|
||||
if (player_count > 4)
|
||||
__result = 0.75f + (player_count * 0.25f);
|
||||
}
|
||||
|
||||
[HarmonyPatch("PatiencePlayerCountModifier")]
|
||||
[HarmonyPostfix]
|
||||
static void PatiencePlayerCountModifier_Postfix(ref float __result, int player_count)
|
||||
{
|
||||
__result = 0.75f + (player_count * 0.25f);
|
||||
if (player_count > 4)
|
||||
__result = 0.75f + (player_count * 0.25f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user