Skip to content
Snippets Groups Projects
Commit 99f6b11e authored by Ronnie Friman's avatar Ronnie Friman
Browse files

update flagbox event timestamp

parent 02eeccde
No related branches found
No related tags found
3 merge requests!59Development to master,!58Development to testing,!55Flagbox replay
......@@ -111,6 +111,6 @@ export class FlagboxEventDTO {
@Min(0)
@Max(3)
capture: number; // which faction is capturing, same logic as in owner with numbers
oP_HistoryTimestamp?: string;
oP_HistoryTimestamp?: number;
objective_point?: ObjectivePointEntity;
}
......@@ -103,7 +103,7 @@ export class ObjectivePointEntity {
@Entity('ObjectivePoint_History')
export class ObjectivePoint_HistoryEntity {
@PrimaryGeneratedColumn('uuid') oP_HistoryId: string;
@Column({ type: 'timestamp' }) oP_HistoryTimestamp: Timestamp;
@Column({ type: 'float' }) oP_HistoryTimestamp: number;
@Column('float') action: number;
// If the owner Faction, capturer Faction or ObjectivePoint, that has, is trying to have or is the point where
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment