Remove superfluous function.
This commit is contained in:
parent
e8bdcf8f19
commit
a37dfe5301
1 changed files with 0 additions and 17 deletions
|
@ -58,11 +58,6 @@ class Module(object):
|
||||||
self.send, min_args=2, help="Send coins to a user",
|
self.send, min_args=2, help="Send coins to a user",
|
||||||
usage="<nickname> <amount>", authenticated=True)
|
usage="<nickname> <amount>", authenticated=True)
|
||||||
|
|
||||||
events.on("received.command.setcoins").hook(
|
|
||||||
self.set_coins, min_args=2,
|
|
||||||
help="Set a users coins. Do not abuse.",
|
|
||||||
usage="<nickname> <amount>", permission="setcoins",
|
|
||||||
authenticated=True)
|
|
||||||
|
|
||||||
now = datetime.datetime.now()
|
now = datetime.datetime.now()
|
||||||
until_next_hour = 60-now.second
|
until_next_hour = 60-now.second
|
||||||
|
@ -91,18 +86,6 @@ class Module(object):
|
||||||
target.del_setting("coins")
|
target.del_setting("coins")
|
||||||
event["stdout"].write("Reset coins for %s" % target.nickname)
|
event["stdout"].write("Reset coins for %s" % target.nickname)
|
||||||
|
|
||||||
def set_coins(self, event):
|
|
||||||
target = event["server"].get_user(event["args_split"][0])
|
|
||||||
coins = event["args_split"][1]
|
|
||||||
|
|
||||||
if not coins.isdigit():
|
|
||||||
event["stderr"].write("Cannot set coins for %s, coins must be a " \
|
|
||||||
+ "whole number." % target.nickname)
|
|
||||||
return
|
|
||||||
|
|
||||||
target.set_setting("coins", "%s.0" % coins)
|
|
||||||
event["stdout"].write("Set %s's coins to %s" % (target.nickname, coins))
|
|
||||||
|
|
||||||
def give_coins(self, event):
|
def give_coins(self, event):
|
||||||
target = event["server"].get_user(event["args_split"][0])
|
target = event["server"].get_user(event["args_split"][0])
|
||||||
coins = event["args_split"][1]
|
coins = event["args_split"][1]
|
||||||
|
|
Loading…
Reference in a new issue