mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 21:04:43 +01:00
give command bugfix
This commit is contained in:
@@ -19,7 +19,7 @@ namespace PemukulPaku.GameServer.Commands
|
||||
public override void Run(Player player, string[] args)
|
||||
{
|
||||
string action = args[0];
|
||||
uint value = args[1] is not null ? uint.Parse(args[1]):0;
|
||||
uint value = (args.Length > 1 && args[1] is not null) ? uint.Parse(args[1]) : 0;
|
||||
|
||||
switch (action)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user