mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-13 02:04:35 +01:00
Merge branch 'master' of https://github.com/rafi1212122/PemukulPaku
This commit is contained in:
@@ -19,7 +19,7 @@ namespace PemukulPaku.GameServer.Commands
|
|||||||
public override void Run(Player player, string[] args)
|
public override void Run(Player player, string[] args)
|
||||||
{
|
{
|
||||||
string action = args[0];
|
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)
|
switch (action)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user