Changed getMark to getThisMark. Added start point to KeyFrame. Race now starts from start point and ends at finish point

#story[377]
This commit is contained in:
zyt10
2017-03-20 17:34:24 +13:00
parent ee34e5028f
commit 0e4bb0f942
3 changed files with 12 additions and 5 deletions
+3 -3
View File
@@ -147,8 +147,8 @@ public class Event {
*
* @return the mark
*/
public Mark getMark() {
return this.mark2;
public Mark getThisMark() {
return this.mark1;
}
/**
@@ -157,6 +157,6 @@ public class Event {
* @return the next mark
*/
public Mark getNextMark() {
return this.mark1;
return this.mark2;
}
}