aboutsummaryrefslogtreecommitdiff
path: root/courtroom.h
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2018-11-17 19:57:27 -0600
committeroldmud0 <oldmud0@users.noreply.github.com>2018-11-17 19:57:27 -0600
commitb385babf77cafda37770ff2593af2a6a37e15260 (patch)
treece201ca20b290625ddfbbb39fb0b111d68ad50f7 /courtroom.h
parent8d61f6007ecfa3e19aa7cce6afb97aa39f143fac (diff)
parent027f95deccef0f17759cbb093dc4097caf8184da (diff)
Fix case-insensitive paths on Linux (#34)
Closes #9
Diffstat (limited to 'courtroom.h')
-rw-r--r--courtroom.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/courtroom.h b/courtroom.h
index dc1c18d7..85c454a7 100644
--- a/courtroom.h
+++ b/courtroom.h
@@ -156,13 +156,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();
-
//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);