blob: 9636559dd35025da7e0dae1e20b0a076e2f31cb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git i/NET/worlds/console/Console.java w/NET/worlds/console/Console.java
index 1fc32ab..b6231ef 100644
--- i/NET/worlds/console/Console.java
+++ w/NET/worlds/console/Console.java
@@ -637,11 +637,13 @@ public abstract class Console extends SuperRoot implements URLSelf, MainCallback
public static final native int getVolumeInfo();
public boolean getVIPAvatars() {
- return vip > 0 || isRedLightWorld;
+ // return vip > 0 || isRedLightWorld;
+ return true;
}
public boolean getVIP() {
- return vip > 0;
+ // return vip > 0;
+ return true;
}
public void setVIP(boolean vip) {
@@ -654,7 +656,8 @@ public abstract class Console extends SuperRoot implements URLSelf, MainCallback
}
public boolean getFullVIP() {
- return vip == 2;
+ // return vip == 2;
+ return true;
}
public void setFullVIP(boolean fullVIP) {
|