mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Fixed Print and cprint function
This commit is contained in:
parent
87f0e52dec
commit
9c35e39a70
1 changed files with 8 additions and 2 deletions
|
|
@ -17,12 +17,18 @@ type ml in chat or use plugin manager to open settings"""
|
||||||
|
|
||||||
|
|
||||||
def Print(*args):
|
def Print(*args):
|
||||||
out = " ".join(str(args))
|
out=""
|
||||||
|
for arg in args:
|
||||||
|
a=str(arg)
|
||||||
|
out += a
|
||||||
ba.screenmessage(out)
|
ba.screenmessage(out)
|
||||||
|
|
||||||
|
|
||||||
def cprint(*args):
|
def cprint(*args):
|
||||||
out = "\n".join(str(args))
|
out=""
|
||||||
|
for arg in args:
|
||||||
|
a=str(arg)
|
||||||
|
out += a
|
||||||
_ba.chatmessage(out)
|
_ba.chatmessage(out)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue