Update ChatMessageToMc.java
This commit is contained in:
parent
17ed5b5859
commit
ca5f38e5fd
@ -5,9 +5,9 @@ import java.util.UUID;
|
|||||||
public class ChatMessageToMc extends Cancellable {
|
public class ChatMessageToMc extends Cancellable {
|
||||||
UUID uuid_sender;
|
UUID uuid_sender;
|
||||||
String content;
|
String content;
|
||||||
int chatID_sender;
|
long chatID_sender;
|
||||||
|
|
||||||
public ChatMessageToMc(UUID uuid_sender, String content, int chatID_sender) {
|
public ChatMessageToMc(UUID uuid_sender, String content, long chatID_sender) {
|
||||||
this.uuid_sender = uuid_sender;
|
this.uuid_sender = uuid_sender;
|
||||||
this.content = content;
|
this.content = content;
|
||||||
this.chatID_sender = chatID_sender;
|
this.chatID_sender = chatID_sender;
|
||||||
@ -29,11 +29,11 @@ public class ChatMessageToMc extends Cancellable {
|
|||||||
this.content = content;
|
this.content = content;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getChatID_sender() {
|
public long getChatID_sender() {
|
||||||
return chatID_sender;
|
return chatID_sender;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setChatID_sender(int chatID_sender) {
|
public void setChatID_sender(long chatID_sender) {
|
||||||
this.chatID_sender = chatID_sender;
|
this.chatID_sender = chatID_sender;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user