Skip to content

Commit c5a3b5e

Browse files
committed
Rename some console methods to be more descriptive.
1 parent 07d5b56 commit c5a3b5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

S1API/Console/ConsoleHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static class ConsoleHelper
3030
/// </summary>
3131
/// <param name="employeeType">The type of employee.</param>
3232
/// <param name="propertyName">The property to add the employee to. You must own the property.</param>
33-
public static void AddEmployee(EEmployeeType employeeType, PropertyType propertyName)
33+
public static void AddEmployeeToProperty(EEmployeeType employeeType, PropertyType propertyName)
3434
{
3535
var command = new AddEmployeeCommand();
3636
var args = new List<string>();
@@ -66,7 +66,7 @@ public static void AddItemToInventory(string itemName, int? amount = null)
6666
/// This method works across both IL2CPP and Mono builds.
6767
/// </summary>
6868
/// <param name="amount">The amount to set the player's bank balance to.</param>
69-
public static void ChangeOnlineBalance(int amount)
69+
public static void SetOnlineBalance(int amount)
7070
{
7171
var command = new ChangeOnlineBalanceCommand();
7272
var args = new List<string>();

0 commit comments

Comments
 (0)