You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PowerCamera/src/nl/svenar/powercamera/PowerCamera.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,6 @@
9
9
importorg.bukkit.Bukkit;
10
10
importorg.bukkit.ChatColor;
11
11
importorg.bukkit.command.CommandExecutor;
12
-
importorg.bukkit.entity.Player;
13
12
importorg.bukkit.event.Listener;
14
13
importorg.bukkit.plugin.Plugin;
15
14
importorg.bukkit.plugin.PluginDescriptionFile;
@@ -33,8 +32,8 @@ public class PowerCamera extends JavaPlugin {
33
32
privatePluginConfigconfig_plugin;
34
33
privateCameraStorageconfig_cameras;
35
34
36
-
publicHashMap<Player, String> player_selected_camera = newHashMap<Player, String>(); // Selected camera name
37
-
publicHashMap<Player, CAMERA_MODE> player_camera_mode = newHashMap<Player, CAMERA_MODE>(); // When the player is viewing the camera (/pc start & /pc preview)
35
+
publicHashMap<UUID, String> player_selected_camera = newHashMap<UUID, String>(); // Selected camera name
36
+
publicHashMap<UUID, CAMERA_MODE> player_camera_mode = newHashMap<UUID, CAMERA_MODE>(); // When the player is viewing the camera (/pc start & /pc preview)
38
37
publicHashMap<UUID, CameraHandler> player_camera_handler = newHashMap<UUID, CameraHandler>(); // When the player is viewing the camera (/pc start & /pc preview)
0 commit comments