fixed previous

This commit is contained in:
AlexE030
2023-02-07 21:10:19 +01:00
parent a1a583492b
commit 55390217c8
2 changed files with 2 additions and 9 deletions
+1 -8
View File
@@ -2,14 +2,7 @@
<project version="4"> <project version="4">
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="f0abe486-ee58-49bd-ad63-04a8b3fc78ec" name="Changes" comment=""> <list default="true" id="f0abe486-ee58-49bd-ad63-04a8b3fc78ec" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/.idea.FlufflParty/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.idea.FlufflParty/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Assets/Scripts/Client.cs" beforeDir="false" afterPath="$PROJECT_DIR$/Assets/Scripts/Client.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Assets/Scripts/Players/NoPlayablePlayer.cs" beforeDir="false" afterPath="$PROJECT_DIR$/Assets/Scripts/Players/NoPlayablePlayer.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Assets/Scripts/Players/PlayablePlayer.cs" beforeDir="false" afterPath="$PROJECT_DIR$/Assets/Scripts/Players/PlayablePlayer.cs" afterDir="false" /> <change beforePath="$PROJECT_DIR$/Assets/Scripts/Players/PlayablePlayer.cs" beforeDir="false" afterPath="$PROJECT_DIR$/Assets/Scripts/Players/PlayablePlayer.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../Server/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../Server/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../Server/out/artifacts/Server_jar/Server.jar" beforeDir="false" afterPath="$PROJECT_DIR$/../Server/out/artifacts/Server_jar/Server.jar" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../Server/out/production/Server/Room$2.class" beforeDir="false" afterPath="$PROJECT_DIR$/../Server/out/production/Server/Room$2.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../Server/out/production/Server/Room.class" beforeDir="false" afterPath="$PROJECT_DIR$/../Server/out/production/Server/Room.class" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -129,7 +122,7 @@
<workItem from="1675541927675" duration="3056000" /> <workItem from="1675541927675" duration="3056000" />
<workItem from="1675598313139" duration="8968000" /> <workItem from="1675598313139" duration="8968000" />
<workItem from="1675795702707" duration="512000" /> <workItem from="1675795702707" duration="512000" />
<workItem from="1675797317461" duration="3055000" /> <workItem from="1675797317461" duration="3244000" />
</task> </task>
<servers /> <servers />
</component> </component>
@@ -49,7 +49,7 @@ public class PlayablePlayer : Player
if ((Input.GetMouseButtonDown(0)) && wurfelZahl == 0 && !wurfelt) if ((Input.GetMouseButtonDown(0)) && wurfelZahl == 0 && !wurfelt)
{ {
wurfelt = true; wurfelt = true;
wurfelZahl = Random.Range(6, 7); wurfelZahl = Random.Range(1, 7);
client.SendWurfeln(wurfelZahl); client.SendWurfeln(wurfelZahl);