Skip to content

Commit 819d983

Browse files
committed
Change default bomb amount to 1
1 parent dbfccca commit 819d983

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Assets/Scenes/Bomberman.unity

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ MonoBehaviour:
14601460
m_EditorClassIdentifier:
14611461
bombPrefab: {fileID: 3939017888894637700, guid: e10230ffd5e90c3489946b2652130401, type: 3}
14621462
bombFuseTime: 3
1463-
bombAmount: 2
1463+
bombAmount: 1
14641464
explosionPrefab: {fileID: 805732483383335703, guid: 7d7e9c7ce1308484e863a8b4489e090f, type: 3}
14651465
explosionLayerMask:
14661466
serializedVersion: 2

Assets/Scripts/BombController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class BombController : MonoBehaviour
77
[Header("Bomb")]
88
public GameObject bombPrefab;
99
public float bombFuseTime = 3f;
10-
public int bombAmount = 2;
10+
public int bombAmount = 1;
1111
private int bombsRemaining;
1212

1313
[Header("Explosion")]

0 commit comments

Comments
 (0)