Skip to content

Commit 450a40c

Browse files
committed
Fix typo Officialy -> Officially
1 parent 753a3cc commit 450a40c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

events/events.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ type RoundEndedEvent struct {
3232
Winner common.Team
3333
}
3434

35-
// RoundOfficialyEndedEvent signals that the round 'has officially ended', not exactly sure what that is tbh.
36-
type RoundOfficialyEndedEvent struct{}
35+
// RoundOfficiallyEndedEvent signals that the round 'has officially ended', not exactly sure what that is tbh.
36+
type RoundOfficiallyEndedEvent struct{}
3737

3838
// RoundMVPEvent signals the announcement of the last rounds MVP.
3939
type RoundMVPEvent struct {

game_events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (p *Parser) handleGameEvent(ge *msg.CSVCMsg_GameEvent) {
8080
})
8181

8282
case "round_officially_ended": // Round ended. . . probably the event where you get teleported to the spawn (=> You can still walk around between round_end and this?)
83-
p.eventDispatcher.Dispatch(events.RoundOfficialyEndedEvent{})
83+
p.eventDispatcher.Dispatch(events.RoundOfficiallyEndedEvent{})
8484

8585
case "round_mvp": // Round MVP was announced
8686
data = mapGameEventData(d, ge)

0 commit comments

Comments
 (0)