File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -362,8 +362,8 @@ type BombPickup struct {
362362 Player * common.Player
363363}
364364
365- // HostageRecued signals that a hostage has been rescued.
366- type HostageRecued struct {
365+ // HostageRescued signals that a hostage has been rescued.
366+ type HostageRescued struct {
367367 Player * common.Player
368368 Hostage * common.Hostage
369369}
Original file line number Diff line number Diff line change @@ -597,7 +597,7 @@ func (geh gameEventHandler) hostageKilled(data map[string]*msg.CSVCMsg_GameEvent
597597}
598598
599599func (geh gameEventHandler ) hostageRescued (data map [string ]* msg.CSVCMsg_GameEventKeyT ) {
600- event := events.HostageRecued {
600+ event := events.HostageRescued {
601601 Player : geh .playerByUserID32 (data ["userid" ].GetValShort ()),
602602 Hostage : geh .gameState ().hostages [int (data ["hostage" ].GetValShort ())],
603603 }
You can’t perform that action at this time.
0 commit comments