Skip to content

Commit

Permalink
Fix CountdownStartedEvent parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
xpdota committed Oct 18, 2024
1 parent 1b0c4df commit 877a262
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enum Fields {
protected Event convert(FieldMapper<Fields> fields, int lineNumber, ZonedDateTime time) {
// 0 result indicates that the countdown was started successfully
// non-zero indicates that it failed (e.g. due to being in combat already)
if (fields.getHex(Fields.result) == 0) {
if (fields.getHex(Fields.result) != 0) {
return null;
}
XivCombatant entity = fields.getEntity(Fields.entityId, Fields.entityName);
Expand Down

0 comments on commit 877a262

Please sign in to comment.