]> ruin.nu Git - NDIRC.git/blobdiff - Misc.pm
Converted PA
[NDIRC.git] / Misc.pm
diff --git a/Misc.pm b/Misc.pm
deleted file mode 100644 (file)
index aad40e3..0000000
--- a/Misc.pm
+++ /dev/null
@@ -1,44 +0,0 @@
-#**************************************************************************
-#   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
-#                                                                         *
-#   This program is free software; you can redistribute it and/or modify  *
-#   it under the terms of the GNU General Public License as published by  *
-#   the Free Software Foundation; either version 2 of the License, or     *
-#   (at your option) any later version.                                   *
-#                                                                         *
-#   This program is distributed in the hope that it will be useful,       *
-#   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
-#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
-#   GNU General Public License for more details.                          *
-#                                                                         *
-#   You should have received a copy of the GNU General Public License     *
-#   along with this program; if not, write to the                         *
-#   Free Software Foundation, Inc.,                                       *
-#   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
-#**************************************************************************/
-package NDIRC::Misc;
-use strict;
-use warnings;
-use feature ':5.10';
-
-require Exporter;
-
-use NDIRC::Context;
-
-our @ISA = qw/Exporter/;
-
-our @EXPORT = qw/valuecolor/;
-
-sub valuecolor {
-       my $s = $_;
-       $s = $_[1] if $#_ >= 1;
-       $s = "" unless defined $s;
-       return chr(3)."5$s".chr(15) if $s eq 'Hostile';
-       return chr(3)."3$s".chr(15) if $s eq 'Friendly';
-       return chr(3)."3$s".chr(15) if $s eq 'Nap' or $s eq 'NAP';
-       return chr(2)."$s".chr(15) if $_[0];
-       return $s;
-}
-
-
-1;