mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 03:17:40 +02:00
Cleaning up those dang warnings (#826)
* done i think wahoo * this one too lol
This commit is contained in:

committed by
minenice55

parent
5d8daa784c
commit
904763b296
@ -28,8 +28,8 @@ namespace HeavenStudio.Games.Scripts_NtrSamurai
|
||||
BezierCurve3D currentCurve;
|
||||
int flyProg = 0;
|
||||
bool flying = true;
|
||||
bool missedLaunch = false;
|
||||
bool missedHit = false;
|
||||
//bool missedLaunch = false; Unused value - Marc
|
||||
//bool missedHit = false; Unused value - Marc
|
||||
|
||||
PlayerActionEvent launchProg;
|
||||
PlayerActionEvent hitProg;
|
||||
@ -295,7 +295,7 @@ namespace HeavenStudio.Games.Scripts_NtrSamurai
|
||||
|
||||
public void LaunchMiss(PlayerActionEvent caller)
|
||||
{
|
||||
missedLaunch = true;
|
||||
//missedLaunch = true; Unused value - Marc
|
||||
switch (flyProg)
|
||||
{
|
||||
case 2:
|
||||
@ -374,7 +374,7 @@ namespace HeavenStudio.Games.Scripts_NtrSamurai
|
||||
break;
|
||||
}
|
||||
DoSplat(caller.startBeat + flyDur);
|
||||
missedHit = true;
|
||||
//missedHit = true; Unused value - Marc
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user