From 11c2f258ebf48f515cdba5c7ae9cccec447604dd Mon Sep 17 00:00:00 2001 From: David Skoland Date: Fri, 16 Nov 2018 01:02:55 +0100 Subject: removed legacy for char icons --- courtroom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'courtroom.h') diff --git a/courtroom.h b/courtroom.h index 2cc099ce..3c937b96 100644 --- a/courtroom.h +++ b/courtroom.h @@ -102,7 +102,7 @@ public: //implementations in path_functions.cpp QString get_background_path(); - QString get_default_background_path(); + QString get_default_background_path(QString p_file); //cid = character id, returns the cid of the currently selected character int get_cid() {return m_cid;} -- cgit From 8ffdd2afb84ec483160f156d24cf786165a9506c Mon Sep 17 00:00:00 2001 From: David Skoland Date: Fri, 16 Nov 2018 02:01:08 +0100 Subject: refactored path functions and added support for case-sensitive filesystems --- courtroom.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'courtroom.h') diff --git a/courtroom.h b/courtroom.h index 3c937b96..286ae7ef 100644 --- a/courtroom.h +++ b/courtroom.h @@ -100,13 +100,10 @@ public: //send a message that the player is banned and quits the server void set_ban(int p_cid); - //implementations in path_functions.cpp - QString get_background_path(); - QString get_default_background_path(QString p_file); - //cid = character id, returns the cid of the currently selected character int get_cid() {return m_cid;} QString get_current_char() {return current_char;} + QString get_current_background() {return current_background;} //properly sets up some varibles: resets user state void enter_courtroom(int p_cid); -- cgit