diff --git a/Better Together/Better Together.xcodeproj/project.pbxproj b/Better Together/Better Together.xcodeproj/project.pbxproj
index 3da84e217e357f982d937c6539dad0a8ea3dacb4..aa934d4ae21077a9e8265565d34c23257be05727 100644
--- a/Better Together/Better Together.xcodeproj/project.pbxproj	
+++ b/Better Together/Better Together.xcodeproj/project.pbxproj	
@@ -18,7 +18,6 @@
 		66383781259F8C360033D344 /* Better_TogetherTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66383780259F8C360033D344 /* Better_TogetherTests.swift */; };
 		6638378C259F8C360033D344 /* Better_TogetherUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6638378B259F8C360033D344 /* Better_TogetherUITests.swift */; };
 		667FBD3625A26FE400569A6D /* Character.swift in Sources */ = {isa = PBXBuildFile; fileRef = 667FBD3525A26FE400569A6D /* Character.swift */; };
-		66C7AF5325A6D57200F5A304 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66C7AF5225A6D57100F5A304 /* Timer.swift */; };
 		8078002B25D01CF8005C2DAC /* BTLobbyMusic.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8078002A25D01CF8005C2DAC /* BTLobbyMusic.mp3 */; };
 		8084DEE625C040350053D095 /* HapticResponseController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8084DEE525C040350053D095 /* HapticResponseController.swift */; };
 		808F8C9625ACFFE500C7FFFE /* LevelSelectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808F8C9525ACFFE500C7FFFE /* LevelSelectionViewController.swift */; };
@@ -85,7 +84,6 @@
 		6638378B259F8C360033D344 /* Better_TogetherUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Better_TogetherUITests.swift; sourceTree = "<group>"; };
 		6638378D259F8C360033D344 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 		667FBD3525A26FE400569A6D /* Character.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Character.swift; sourceTree = "<group>"; };
-		66C7AF5225A6D57100F5A304 /* Timer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Timer.swift; sourceTree = "<group>"; };
 		8078002A25D01CF8005C2DAC /* BTLobbyMusic.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = BTLobbyMusic.mp3; sourceTree = "<group>"; };
 		8084DEE525C040350053D095 /* HapticResponseController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HapticResponseController.swift; sourceTree = "<group>"; };
 		808F8C9525ACFFE500C7FFFE /* LevelSelectionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LevelSelectionViewController.swift; sourceTree = "<group>"; };
@@ -253,7 +251,6 @@
 		F2DFAFFA25A4668D00F982BA /* Partial */ = {
 			isa = PBXGroup;
 			children = (
-				66C7AF5225A6D57100F5A304 /* Timer.swift */,
 				F2DFB01C25A5C03400F982BA /* Obstacle.swift */,
 				667FBD3525A26FE400569A6D /* Character.swift */,
 				6630961125D4641200F9B2BA /* Readme.md */,
@@ -446,7 +443,6 @@
 				808F8C9625ACFFE500C7FFFE /* LevelSelectionViewController.swift in Sources */,
 				80F869BC25A65CFD00CF3D59 /* MutliplayerManager.swift in Sources */,
 				80BBBDCB25AE41EE006DA00A /* LocalTeamPlayManager.swift in Sources */,
-				66C7AF5325A6D57200F5A304 /* Timer.swift in Sources */,
 				80BBBDD325AE4506006DA00A /* LocalBTPlayerInfo.swift in Sources */,
 				F228C65125C4D6C100E4E701 /* GameGyroscopeController.swift in Sources */,
 				80E55F6725CF3A8600630587 /* SetUpState.swift in Sources */,
diff --git a/Better Together/Better Together/Controls/HapticResponseController.swift b/Better Together/Better Together/Controls/HapticResponseController.swift
index 00a16c512a1c0b740880555b5ac5753ea36e46da..392783cb3f012ca9f8e204e62fe4f4e42617d051 100644
--- a/Better Together/Better Together/Controls/HapticResponseController.swift	
+++ b/Better Together/Better Together/Controls/HapticResponseController.swift	
@@ -16,7 +16,7 @@ class HapticResponseController {
      }
     
     static func grabSucceedFeedback() {
-        let generator = UIImpactFeedbackGenerator(style: .heavy)
+        let generator = UIImpactFeedbackGenerator(style: .light)
         generator.impactOccurred()
     }    
 }