Try to remove handcuff over the head

This commit is contained in:
Xamora64 2024-12-03 23:03:13 +01:00
parent 9c19ae5345
commit ccfcb79526
3 changed files with 5 additions and 3 deletions

View file

@ -44,7 +44,7 @@ public class ConfigManager {
static public double MULT_JAIL_TIME = 17.28; // 17.28 * 10 000 = 48 hours
static public int REDUCE_ALIGN_KILL = 33;
// 7.2 * 24000 = 172 800 = 48h
// 17.28 * 10 000 = 48 hours
static public int MAX_RATE_CRIMINAL = 10000;
static public long RATE_CRIMINAL_NOT_SAFE = 5000; // Not use
static public int RATE_TO_HAVE_POSITION = 1000;

View file

@ -3,6 +3,7 @@ package xamora.gp_dbc.gui;
import JinRyuu.JRMCore.JRMCoreH;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import xamora.gp_dbc.Main;
import xamora.gp_dbc.config.ConfigManager;
import xamora.gp_dbc.system.Handcuffed;
import xamora.gp_dbc.utils.TextUtils;
import net.minecraft.client.Minecraft;
@ -47,8 +48,8 @@ public class GuiHandcuffed extends Gui {
if (event.isCancelable())
return;
//if (time_left < -timeToWait)
//return;
if (time_left < -Handcuffed.timeToWait)
handcuffed = false;
if (JRMCoreH.ko <= 0)
return;

View file

@ -14,6 +14,7 @@ public class Handcuffed {
public UUID jailer;
public static long timeToWait = ConfigManager.TIME_TO_GO_IN_JAIL;
public static long timeToUnhandcuff = ConfigManager.TIME_UNHANDCUFFING;
public Handcuffed(UUID inmate, UUID jailer) {
this(inmate, jailer, System.currentTimeMillis(), false);