diff options
| author | Fuwn <[email protected]> | 2024-06-08 18:23:53 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-08 18:24:15 +0000 |
| commit | 1d5bc51ef22506c46d4a23ba545c0d202019d8ea (patch) | |
| tree | 73112230e9934ec1c03b11e38d275e9e806ae3b6 /patches/optional/free_vip.patch | |
| parent | refactor(patches): move patches to directory (diff) | |
| download | worldsplayer_source_editor-1d5bc51ef22506c46d4a23ba545c0d202019d8ea.tar.xz worldsplayer_source_editor-1d5bc51ef22506c46d4a23ba545c0d202019d8ea.zip | |
feat: optional patches
Diffstat (limited to 'patches/optional/free_vip.patch')
| -rw-r--r-- | patches/optional/free_vip.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/optional/free_vip.patch b/patches/optional/free_vip.patch new file mode 100644 index 0000000..9636559 --- /dev/null +++ b/patches/optional/free_vip.patch @@ -0,0 +1,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) { |