konfiszierungsgeld erhöht

This commit is contained in:
hydrant
2021-06-01 22:47:22 +02:00
parent ca3af417af
commit 25c4e6efd9
3 changed files with 4 additions and 4 deletions

View File

@@ -27,6 +27,6 @@ namespace ReallifeGamemode.Server.Inventory.Items
public override bool Legal => false; public override bool Legal => false;
public int PriceForConfiscation { get; } = 5; public int PriceForConfiscation { get; } = 15;
} }
} }

View File

@@ -22,7 +22,7 @@ namespace ReallifeGamemode.Server.Inventory.Items
public override uint Object { get; } public override uint Object { get; }
public override bool RemoveWhenUsed { get; } = false; public override bool RemoveWhenUsed { get; } = false;
public int PriceForConfiscation { get; } = 10; public int PriceForConfiscation { get; } = 105;
public override bool Use(Player player, User user, DatabaseContext databaseContext) public override bool Use(Player player, User user, DatabaseContext databaseContext)
{ {

View File

@@ -25,7 +25,7 @@ namespace ReallifeGamemode.Server.Inventory.Items
public override bool Legal => false; public override bool Legal => false;
public override bool RemoveWhenUsed => true; public override bool RemoveWhenUsed => true;
public int PriceForConfiscation { get; } = 25; public int PriceForConfiscation { get; } = 150;
public override bool Use(Player player, User user, DatabaseContext databaseContext) public override bool Use(Player player, User user, DatabaseContext databaseContext)
{ {
@@ -46,7 +46,7 @@ namespace ReallifeGamemode.Server.Inventory.Items
private bool CanUserUseJoint(User user) private bool CanUserUseJoint(User user)
{ {
if(!lastJointUse.ContainsKey(user.Id)) if (!lastJointUse.ContainsKey(user.Id))
{ {
return true; return true;
} }