Make ActionSetGlobalValue return true

This commit is contained in:
KingRainbow44 2023-08-27 19:42:28 -04:00
parent aa3e23f5f3
commit 4f34970005
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -24,6 +24,6 @@ public final class ActionSetGlobalValue extends AbilityActionHandler {
target.getScene().getHost().sendPacket(
new PacketServerGlobalValueChangeNotify(target, valueKey, value.get(ability)));
return false;
return true;
}
}