fix usercallbackevent gives wrong user bug

Este commit está contenido en:
mrbesen 2021-01-16 16:58:25 +01:00
padre 1e7b3f4794
commit e0f531004f
Firmado por: MrBesen
ID de clave GPG: 596B2350DCD67504
Se han modificado 2 ficheros con 4 adiciones y 1 borrados

Ver fichero

@ -39,7 +39,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20190722</version>
<version>20201115</version>
<scope>compile</scope>
</dependency>
<dependency>

Ver fichero

@ -13,9 +13,12 @@ public class UserCallbackEvent extends MessageEvent {
private final String data;
@Getter
private final String ID;
@Getter
private final TUser user;
public UserCallbackEvent(TUser u, String data, String id, TMessage msg) {
super(msg);
user = u;
this.data = data;
this.ID = id;
}