File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GameObject:
1111
- component: {fileID: 6404582697255075594}
1212
- component: {fileID: 6404582697255075593}
1313
m_Layer: 0
14-
m_Name: Unit
14+
m_Name: Unit prefab
1515
m_TagString: Untagged
1616
m_Icon: {fileID: 0}
1717
m_NavMeshLayer: 0
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected override void GetWheels()
2626
Debug.Log("Get Cybertruck wheels");
2727
}
2828

29-
protected override bool CanManuFactureCar()
29+
protected override bool CanManufactureCar()
3030
{
3131
Debug.Log("Sorry but the Cybertruck is still a so we can't manufacture it!");
3232

Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public void AssembleCar(List<CarExtras> carExtras = null)
1515
{
1616
InitAssemblyProcess();
1717

18-
if (!CanManuFactureCar())
18+
if (!CanManufactureCar())
1919
{
2020
return;
2121
}
@@ -76,7 +76,7 @@ protected void GetCarExtras(List<CarExtras> carExtras)
7676

7777

7878
//...and hooks which is a method the child can override if needed
79-
protected virtual bool CanManuFactureCar()
79+
protected virtual bool CanManufactureCar()
8080
{
8181
return true;
8282
}

0 commit comments

Comments
 (0)